AHG - Profitable Strategy for Struggling Traders

Status
Not open for further replies.
Quote from mark1:

Here is the same code posted by JD Conner, translated for Amibroker

Keep in mind that the blue/yellow candles are painted only when the following candle has a Higher High than the pivot candle, that's how the pattern is confirmed

If someone has the code to predict that the candle following the pivot is going to have an Higher High I will Buy it for a couple billion dollars :D

I wanted to post the code for the Anek bars, but for some reason I think Amibroker has a bug and it doesn't plot them properly. I wrote to the developer to see whether he can fix it.

Hi Mark1,
Thanks for your code post, but i for some reason can't open that zip file. Can you please post it in text format, so i can copy and paste it into amibroker.
tia
 
Quote from madmax98:

interesting how they all share the same characters!!! my GF would come back from work and expect me to finish my trading/ research the minute she steps a foot in the house:confused: I had to tell her once to kiss my ass and leave if she doesn't like me doing something that's actually productive, not like i'm playing a game or something!!!!

Hehe, When she bitches and moans I tell her I'm going back to Thailand alone for good if you don't quit the fuss :cool:

Lol that works like a charm...I'm a SOB I know :D
 
Quote from ronald tr:

Hi Mark1,
Thanks for your code post, but i for some reason can't open that zip file. Can you please post it in text format, so i can copy and paste it into amibroker.
tia

SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));

pivotH=H> Ref(H,-1)AND Ref(H,-1)> Ref(H,-2)AND L> Ref(L,1) ;
pivotL=L< Ref(L,-1)AND Ref(L,-1)< Ref(L,-2)AND H< Ref(H,1);



//Uncomment if you want to plot the arrows

//PlotShapes( pivotH*shapeDownArrow,colorYellow);
//PlotShapes( pivotL*shapeUpArrow,colorBlue);

///////////////////////////////////////////////////////////////////////////////////////

//Comment if you don't want to color the bars

paint = IIf(C>O, colorGreen, colorRed);
paint = IIf(pivotH, colorYellow, paint);
paint = IIf(pivotL, colorBlue, paint);
Plot(C, "Close", paint, styleNoTitle | GetPriceStyle());
 
Quote from mark1:

Hehe, When she bitches and moans I tell her I'm going back to Thailand alone for good if you don't quit the fuss :cool:

Lol that works like a charm...I'm a SOB I know :D



hahahahah, i'll try that next time.
 
Quote from ronald tr:

Hi Mark1,
Thanks for your code post, but i for some reason can't open that zip file. Can you please post it in text format, so i can copy and paste it into amibroker.
tia


Here you go

in txt format
 

Attachments

Quote from madmax98:

Question ( sorry iif it sounds stupid, no experience with this kind of charting): are Equivolume bars the same as constant volume bars? what charting services can i use that have constant volume candles? one more, i'm looking for a charting service that provide it's own data source, is there one ( been looking for a simulator but don't want to freeze up capital in IB, so i'm just going to watch charts)...

Constant volume bars are generated based on the user's setting for a particular number of contracts. For example, a 1000 volume bar chart will generate one bar for every 1000 contracts. The width of each bar is constant just like it would be for a tick or most time-based charts.

Equivolume bars are different....they are time-based bars with an added feature of the width of each bar varying based on volume. Wider bars have more volume associated with them than narrower bars on the same interval setting.

Hope it helps.
 
Quote from mark1:

Here is the same code posted by JD Conner, translated for Amibroker

Keep in mind that the blue/yellow candles are painted only when the following candle has a Higher High than the pivot candle, that's how the pattern is confirmed

If someone has the code to predict that the candle following the pivot is going to have an Higher High I will Buy it for a couple billion dollars :D

I wanted to post the code for the Anek bars, but for some reason I think Amibroker has a bug and it doesn't plot them properly. I wrote to the developer to see whether he can fix it.

Mark1, am I correct to say that yellow/blue bars will appear only after the close of the next bar, thus we are getting not a full picture by looking at historical charts for 123pivot? So, the real entry would only be on NEXT bar close?
 
Quote from madmax98:

interesting how they all share the same characters!!! my GF would come back from work and expect me to finish my trading/ research the minute she steps a foot in the house:confused: I had to tell her once to kiss my ass and leave if she doesn't like me doing something that's actually productive, not like i'm playing a game or something!!!!

Cant tell you how many arguments this has caused.... she stopped complaining once the money came rolling in :)
 
Status
Not open for further replies.
Back
Top