NexusFi: Find Your Edge


Home Menu

 





Adding 3 EMAs to OBV


Discussion in ThinkOrSwim

Updated
    1. trending_up 1,775 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?
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Deepmoney LLM
Elite Quantitative GenAI/LLM
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
61 thanks
Funded Trader platforms
38 thanks
NexusFi site changelog and issues/problem reporting
26 thanks
GFIs1 1 DAX trade per day journal
19 thanks
The Program
18 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