PureBytes Links
Trading Reference Links
|
Here is a sample of the EasyLanguage you could use to create such a
technique assuming you are using 30-min bars and the data contains only day
session ( 12:00a - 11:59p ) activity.
if Date[1] < Date then begin
Value0 = 1 ;
Value1 = High ;
Value2 = Low ;
end else
if Value0 = 1 then begin
Plot1(Value1, "1st30minHi") ;
Plot2(Value2, "1st30minLo") ;
end ;
Best regards,
Benjamin Blanco,
EasyLanguageŽ Specialist
( former TradeStation Technologies, Inc. employee of six years )
http://www.blancofamily.net/ezlang.htm
EasyLanguage is a registered trademarks of TradeStation Technologies, Inc.
----- Original Message -----
From: "9m9" <9m9@xxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Saturday, August 31, 2002 1:41 AM
Subject: Unidentified subject!
Hello omega-list,
Could someone help me with a simple indicator.
I want to plot two lines across the chart for the entire day.
value1: High of first 30 minutes bar
value2: Low of first 30 minutes bar
Thanks in advance for any assistance.
--
Best regards,
vlad mailto:9m9@xxxxxxx
|