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