I have the following Ross Hook indicator. Never used it and have no idea
where I got it. Don't even know how or if it works. I just collect this kind
of thing with the idea of looking it over before I die. Probably won't.
If High>MarketHigh Then {Capture Highest High of Market}
MarketHigh=High
Else
MarketHigh=MarketHigh[1];
If Low<MarketLow Then {Capture Lowest Low of Market}
MarketLow=Low
Else
MarketLow=MarketLow[1];
If High<High[1] and High[1]>High[2] {Identify Privot Highs}
Then Begin
PHi=PHi+1; {Pivot High Counter}
PHiBar[Phi]=CurrentBar -1; {Most Recent Pivot High Bar}
PHiPrice[PHi]=High[1]; {Most Recent Pivot High Price}
If Low>Low[1] and Low[1]<Low[2]
Then Begin
PLo=PLo+1;
PLoBar[PLo]=CurrentBar-1;
PLoPrice[PLo]=Low[1];
End;
If PHiBar[PHi]=CurrentBar -1 and PHiPrice[PHi]<MarketHigh and PHi>1 and
PLo>1
Then Begin
For Idx=PHi-1 DownTo 1
Begin
If PHiPrice[PHi]<PHiPrice[Idx]
Then Begin
PrevPHiBar=PHiBar[Idx];
Idx=1;
End;
End;
PBarCount=PHiBar[PHi]-PrevPHiBar;
If PBarCount>GannDays
Then Begin
LowestPlo=PLoPrice[PLo];
LowestPLoBar=PLoBar[PLo];
For Idx=PLo-1 DownTo 1
Begin
If PLoBar[Idx]>PrevPHiBar
Then Begin
If LowestPLo>PLoPrice[Idx]
Then Begin
LowestPLo=PLoPrice[Idx];
LowestPLoBar=PLoBar[Idx];
PLoFound=TRUE;
End;
End Else
Idx=1;
End;
End;
If PLoFound
Then Begin
Lo2HiDays=PHiBar[Phi]-LowestPLoBar;
If Lo2HiDays>=GannDays and PHiBar[PHi]>TempBuyBar
Then Begin
TempBuyPrice=PHiPrice[PHi];
TempBuyBar=PHiBar[PHi];
TempBuyOn=TRUE;
End;
End;
End;
If TempBuyON
Then Begin
If High<TempBuyPrice and CurrentBar-TempBuyBar<=SigExpir
Then
Plot1(TempBuyPrice+1*MinMove POINT,"Phi")
Else
TempBuyON=FALSE;
End;
If PLoBar[PLo]=CurrentBar-1 and PLoPrice[PLo]>MarketLow and PHi>1 and PLo>1
Then Begin
PBarCount=0;
For Idx=PLo-1 DownTo 1
Begin
If PLoPrice[PLo]>PLoPrice[Idx]
Then Begin
PrevPLoBar=PLoBar[Idx];
PBarCount=PLoBar[PLo]-PrevPLoBar;
Idx=1;
End;
End;
If PBarCount>GannDays
Then Begin
HighestPHi=PHiPrice[PHi];
HighestPHiBar=PHiBar[PHi];
For Idx=PHi-1 DownTo 1
Begin
If PHiBar[Idx]>PrevPLoBar
Then Begin
If HighestPHi<PHiPrice[Idx]
Then Begin
HighestPHi=PHiPrice[Idx];
HighestPHiBar=PHiBar[Idx];
PHiFound=TRUE;
End;
End Else
Idx=1;
End;
End;
If PHiFound
Then Begin
Hi2LoDays=PloBar[PLo]-HighestPHiBar;
If Hi2LoDays>GannDays and PLoBar[PLo]>TempSellBar
Then Begin
TempSellPrice=PLoPrice[PLo];
TempSellBar=PLoBar[PLo];
TempSellOn=TRUE;
End;
End;
End;
If TempSellON
Then Begin
If Low>TempSellPrice and CurrentBar-TempSellBar<=SigExpir
Then Plot2(TempSellPrice-1*MinMove POINT,"PLo")
Else TEMPSellON=FALSE;
End;
End;
Can you help answer these questions from other members on futures io?
Site Administrator Swing Trader Data Scientist & DevOps
Manta, Ecuador
Experience: Advanced
Platform: My own custom solution
Trading: Emini Futures
Posts: 49,403 since Jun 2009
Thanks: 32,064 given,
96,701
received
Tip
Please post code snippets using the [code]put code in here[/code] code tags. If you are posting an entire indicator, please attach the file where possible instead of cutting and pasting.