NexusFi: Find Your Edge


Home Menu

 





Adding 3 EMAs to OBV


Discussion in ThinkOrSwim

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




 
Search this Thread

Adding 3 EMAs to OBV

  #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?
MC PL editor upgrade
MultiCharts
ZombieSqueeze
Platforms and Indicators
Better Renko Gaps
The Elite Circle
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
What is Markets Chat (markets.chat) real-time trading ro …
80 thanks
Spoo-nalysis ES e-mini futures S&P 500
55 thanks
Tao te Trade: way of the WLD
46 thanks
Just another trading journal: PA, Wyckoff & Trends
35 thanks
The Program
19 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


© 2024 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 - Privacy Policy - Downloads - Top
no new posts