NexusFi: Find Your Edge


Home Menu

 





Adding 3 EMAs to OBV


Discussion in ThinkOrSwim

Updated
    1. trending_up 2,227 views
    2. thumb_up 0 thanks given
    3. group 3 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
heispark
Seoul Korea
 
Posts: 16 since Mar 2018
Thanks Given: 18
Thanks Received: 1

Hello,

Can you help me editing the following code of On Balance Volume? I want to add 3, 21 and 50 period of EMA on OBV.

------------------------------
#
# TD Ameritrade IP Company, Inc. (c) 2008-2019
#

declare lower;

plot OBV = TotalSum(Sign(close - close[1]) * volume);

OBV.SetDefaultColor(GetColor(8));

---------------------------

Thanks!


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Trump Lands in Beijing on CPI Day: Iran Peace Expires To …
Prediction Markets & Event Contracts
Sundays Verdict: Lebanon Locked at 99.85% as Iran June 7 …
Prediction Markets & Event Contracts
Friday Update: Markets Now Pricing Fed Rate HIKES as Sta …
Traders Hideout
Thanks Mike. Godspeed.
The Elite Circle
El Clasico Draws $9.2M in Prediction Market Action -- Bi …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
205 thanks
Sober Journey With S&P
21 thanks
30 Sessions
20 thanks
Volume Indicators
8 thanks
Thanks Mike. Godspeed.
7 thanks
  #2 (permalink)
netarchitech
NY, NY
 
Posts: 68 since Dec 2011
Thanks Given: 27
Thanks Received: 19

Hi,

Try this:
 
Code
declare lower;

plot OBV = TotalSum(Sign(close - close[1]) * volume);
OBV.SetDefaultColor(GetColor(8));
OBV.SetLineWeight(2);

def price1 = OBV;
input length1 = 3;
input averageType1 = AverageType.EXPONENTIAL;

plot MA1 = MovingAverage(averageType1, price1, length1);
MA1.SetDefaultColor(Color.GREEN);
MA1.SetLineWeight(2);

def price2 = OBV;
input length2 = 21;
input averageType2 = AverageType.EXPONENTIAL;

plot MA2 = MovingAverage(averageType2, price2, length2);
MA2.SetDefaultColor(Color.YELLOW);
MA2.SetLineWeight(2);

def price3 = OBV;
input length3 = 50;
input averageType3 = AverageType.EXPONENTIAL;

plot MA3 = MovingAverage(averageType3, price3, length3);
MA3.SetDefaultColor(Color.RED);
MA3.SetLineWeight(2);

Hope this helps...

Good Luck and Good Trading


Reply With Quote
  #3 (permalink)
heispark
Seoul Korea
 
Posts: 16 since Mar 2018
Thanks Given: 18
Thanks Received: 1



netarchitech View Post
Hi,

Try this:
 
Code
declare lower;

plot OBV = TotalSum(Sign(close - close[1]) * volume);
OBV.SetDefaultColor(GetColor(8));
OBV.SetLineWeight(2);

def price1 = OBV;
input length1 = 3;
input averageType1 = AverageType.EXPONENTIAL;

plot MA1 = MovingAverage(averageType1, price1, length1);
MA1.SetDefaultColor(Color.GREEN);
MA1.SetLineWeight(2);

def price2 = OBV;
input length2 = 21;
input averageType2 = AverageType.EXPONENTIAL;

plot MA2 = MovingAverage(averageType2, price2, length2);
MA2.SetDefaultColor(Color.YELLOW);
MA2.SetLineWeight(2);

def price3 = OBV;
input length3 = 50;
input averageType3 = AverageType.EXPONENTIAL;

plot MA3 = MovingAverage(averageType3, price3, length3);
MA3.SetDefaultColor(Color.RED);
MA3.SetLineWeight(2);

Hope this helps...

Good Luck and Good Trading

Thank you very much for your quick help. I really appreciate it!
Cheers,


Reply With Quote




Last Updated on April 23, 2019


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts