| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Tradestation Volume Avg Bubs Bubs Blog | ||
| |
|
| | #2 | ||
![]() | Re: Tradestation Volume Avg I am not sure if this answers your question. I have Volume Avg indicator on my daily charts. The chart can be set to any time frame for intraday also. I brought up radar screen, inserted a list of stocks and then inserted Volume Average. 2 columns appeared with this indicator in Radar Screen - Vol and Vol Avg. Bill | ||
| |
|
| | #3 | ||
![]() | Re: Tradestation Volume Avg | ||
| |
|
| | #4 | ||
![]() | Re: Tradestation Volume Avg Plot1( TVol, "Vol" ) ; Plot2( AvgTVol, "VolAvg" ) ; if AvgTVol > 0 then Plot3(TVol/AvgTVol * 100, "% D Vol"); << new line | ||
| |
|
| | #5 | ||
![]() | Re: Tradestation Volume Avg inputs: AvgLength( 50 ), AlertPct( 50 ), UpColor( Cyan ), DownColor( Red ) ; variables: VVol( 0 ), AvgVVol( 0 ), TVol( 0 ), AvgTVol( 0 ), AlertFactor( 1 + AlertPct * .01 ), AlertStr( NumToStr( AlertPct, 2 ) ) ; if BarType >= 2 then { ie, not tick/minute data } begin VVol = Volume ; AvgVVol = AverageFC( Volume, AvgLength ) ; Plot1( VVol, "Vol" ) ; Plot2( AvgVVol, "VolAvg" ) ; { Alert criteria } if VVol crosses over AvgVVol * AlertFactor then Alert( "Volume breaking through " + AlertStr + "% above its avg" ) ; end else { if tick/minute data; in the case of minute data, also set the "For volume, use:" field in the Format Symbol dialog to Trade Vol or Tick Count, as desired } begin TVol = Ticks ; AvgTVol = AverageFC( Ticks, AvgLength ) ; Plot1( TVol, "Vol" ) ; Plot2( AvgTVol, "VolAvg" ) ; { Alert criteria } if TVol crosses over AvgTVol * AlertFactor then Alert( "Volume breaking through " + AlertStr + "% above its avg" ) ; end ; { Color criteria } if C > C[1] then SetPlotColor( 1, UpColor ) else if C < C[1] then SetPlotColor( 1, DownColor ) ; { ** Copyright (c) 1991-2003 tradestation Technologies, Inc. All rights reserved. ** ** tradestation reserves the right to modify or overwrite this analysis technique with each release. ** } | ||
| |
|
| | #6 | ||
![]() | Re: Tradestation Volume Avg | ||
| |
|
| | #7 | ||
![]() | Re: Tradestation Volume Avg | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |