PureBytes Links
Trading Reference Links
|
There is probably an easier way to do what you ask, but the following should work:
Go into Indicator Builder and make a new indicator called "Time" and use this formula: If(Hour() > 8 AND Minute() >30 AND Hour()<10 ,1,0)
Next make an indicator called "HV" and use this formula: If(Ref(Fml("time"),-1)=0 AND Fml("time") =1, Min(PREV,LOW),Max(PREV,H))
Next make an indicator called "LV" and use this formula: If(Ref(Fml("time"),-1)=0 AND Fml("time") =1, Max(PREV,H),Min(PREV,L))
Next make an indicator called "Cross" and use this formula: If(C>Ref(Fml("HV"),-1),1, If(C < Ref(Fml("LV"),-1),-1,0))
The final formula should display a +1 whenever the last price crosses above the high of the day up to the previous bar and display a -1 whenever the last price crosses below the low of the day up to the previous bar.
Good luck,
Pete
To: equismetastock@xxxxxxxxxxxxxxx From: hitendra@xxxxxxxxxxx Date: Thu, 26 Mar 2009 20:27:44 +0530 Subject: [EquisMetaStock Group] Cross Over
Hello,
In Live Market- 5 min chart.
Cross Over of current price and High of the day on intra-day 5
min chart.
In the same way
Cross Over of price below the Low of the day on intra-day 5 min
chart.
How can I get it on intra-day chart.
Thanks
Hitendra
__._,_.___
__,_._,___
|
|