NexusFi: Find Your Edge


Home Menu

 





Momentum Indicator to reference Volume not Price


Discussion in TradeStation

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




 
Search this Thread

Momentum Indicator to reference Volume not Price

  #1 (permalink)
Stormkicker
Bangkok
 
Posts: 5 since Feb 2015
Thanks Given: 1
Thanks Received: 0

Can anyone point me in the right direction regarding Easylanguage? I would like to have the Tradestation Momentum indicator reference volume instead of price. I have replaced "Mom = Momentum( Price, Length )" with "Mom = Momentum( Volume, Length )" (in red text) but when I do this the indicator appears very different on the screen and therefore no good. With this in mind I guess there is more to it? The code is below. Any pointers on this would be appreciated.

Thanks



variables:
intrabarpersist InAChart( false ),
Mom( 0 ),
Accel( 0 ),
ColorLevel( 0 ) ;

once
begin
InAChart = GetAppInfo( aiApplicationType ) = cChart ;
end ;

Mom = Momentum( Volume, Length ) ;
Accel = Momentum( Mom, 1 ) ; { 1 bar acceleration }

Plot1( Mom, !( "Momentum" ) ) ;
Plot2( 0, !( "ZeroLine" ) ) ;

{ gradient coloring }
if UseGradientColoring then
begin
ColorLevel = NormGradientColor( Mom, true, ColorNormLength, UpColor, DnColor ) ;

if InAChart then { study is applied to a chart }
SetPlotColor( 1, ColorLevel )
else { study is applied to grid app }
begin
SetPlotColor( 1, GridForegroundColor ) ;
SetPlotBGColor( 1, ColorLevel ) ;
end ;
end ;

{ alert criteria }
if AlertEnabled then
begin
if Mom > 0 and Accel > 0 then
Alert( !( "Indicator positive and increasing" ) )
else if Mom < 0 and Accel < 0 then
Alert( !( "Indicator negative and decreasing" ) ) ;
end

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
How to apply profiles
Traders Hideout
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,434 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

Stormkicker,

check out the build in volume indicator. Depending on the bar type you are using the reserved word volume won't return the correct value. The volume indicator shows how to get the correct value depending on the bar type.

Regards,

ABCTG

Follow me on Twitter Reply With Quote
Thanked by:




Last Updated on March 26, 2016


© 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