1週間基準の高値更新 (WA-New High for Week) は、1週間の中での高値更新を描画します。
{ Search Tag: WA-New High for Week }
variables:
HighestHi( 0 ) ;
if BarType < 3 or BarType = 14 then { if tick, second, minute or daily bars }
begin
if DayOfWeek( Date ) < DayOfWeek( Date[1] ) then
HighestHi = High
else if High > HighestHi then
begin
Plot1( High, !( "NewHi-W" ) ) ;
Alert ;
HighestHi = High ;
end ;
end ;
Copyright © TradeStation Technologies, Inc. All Rights Reserved
TradeStation reserves the right to modify or overwrite
this analysis technique with each release.