PureBytes Links
Trading Reference Links
|
Hi Roy, thank you once again for your efforts.
All I had to do was change the 'Time of day' hours so the 24 clock's
covered. The Indicator works across 2 Months too, unless I suppose
one were using an Intraday chart with data extending to the same
Month of a second year.
Re: "I suspect that multiplying Month() by 1000000 . . ."
I don't know enough about coding or what the code means to answer
this. Both the new Intraday Indicator and the original used on Daily
or above charts appear to work correctly, ie they do indicate
significant Highs or Lows to the bar. I'll try and adapt them to fibo
and other numbers and see how they do.
The main thing I wanted was the means of using an Indicator on
Intraday charts, as said, something that no one appeared to be coding
for, which you have now provided.
I have the 'Equis Formula Primer' pdf but do not find it that
helpful, for instance it has nothing about coding for 'hours and
minutes'.
Can you suggest any material, books or websites Roy, where I can
learn more about coding ? – kindergarten level would suit me best.
Cheers Roy and thanks again. murusprimus (Wallace).
Gann 30 degree cycles from 2 dates
A:=Input("First date - dd" ,1,31,31);
F:=Input("Time of day - hhmm",0100,2400,1015);
B:=Input("Second date - dd",1,31,31);
G:=Input("Time of day - hhmm",0100,2400,1130);BSA:=BarsSince
(A=DayOfMonth() AND F=Hour()*100+Minute());
BSB:=BarsSince(B=DayOfMonth() AND G=Hour()*100+Minute());
ADeg:=BSA*1.3846153;BDeg:=BSB*1.3846153;
Cyc1:=If(Int(ADeg)=30,1,If(Int(ADeg)=60,1,If(Int(ADeg)=90,
1,If(Int(ADeg)=120,1,If(Int(ADeg)=150,1,If(Int(ADeg)=180,
1,If(Int(ADeg)
=210,1,If(Int(ADeg)=240,1,If(Int(ADeg)=270,1,If(Int( (ADeg)=300),
1,If(Int(ADeg)=330,1,If(Int(ADeg)=360,1,0))))))))))));
Cyc2:=If(Int(BDeg)=30,1,If(Int(BDeg)=60,1,If(Int(BDeg)=90,
1,If(Int(BDeg)=120,1,If(Int(BDeg)=150,1,If(Int(BDeg)=180,
1,If(Int(BDeg)
=210,1,If(Int(BDeg)=240,1,If(Int(BDeg)=270,1,If(Int( (BDeg)=300),
1,If(Int(BDeg)=330,1,If(Int(BDeg)=360,1,0))))))))))));
Cyc1; Cyc2;
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/yMx78A/fNtFAA/i5gGAA/zMEolB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|