NexusFi: Find Your Edge


Home Menu

 





Momentum Indicator to reference Volume not Price


Discussion in TradeStation

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




 
Search this Thread
  #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?
What You Know vs How much you know about it
Traders Hideout
Has anyone taken The Confident Trader course from aheadc …
Trading Reviews and Vendors
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
MC PL editor upgrade
MultiCharts
MC Advanced Simulated Trading.
MultiCharts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Tao te Trade: way of the WLD
45 thanks
HumbleTraders next chapter
44 thanks
What is Markets Chat (markets.chat) real-time trading ro …
41 thanks
ApexTraderFunding.com experience and review
30 thanks
1 Minute Man
19 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,439 since Apr 2013
Thanks Given: 486
Thanks Received: 1,631

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 - Sitemap - Downloads - Top
no new posts