AHG - Profitable Strategy for Struggling Traders

Discussion in 'Journals' started by Anekdoten, Jul 19, 2007.

Thread Status:
Not open for further replies.
  1. 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
     
    #4251     Nov 25, 2007
  2. mark1

    mark1 Guest

    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
     
    #4252     Nov 25, 2007
  3. 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());
     
    #4253     Nov 25, 2007


  4. hahahahah, i'll try that next time.
     
    #4254     Nov 25, 2007
  5. mark1

    mark1 Guest


    Here you go

    in txt format
     
    #4255     Nov 25, 2007
  6. 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.
     
    #4256     Nov 25, 2007
  7. Thnx mark, it makes sense now.
     
    #4257     Nov 25, 2007
  8. Thanks Mark1 and guys for translating and posting, those yellow/blue bars picks some interesting spots.
     
    #4258     Nov 25, 2007
  9. 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?
     
    #4259     Nov 25, 2007
  10. Cant tell you how many arguments this has caused.... she stopped complaining once the money came rolling in :)
     
    #4260     Nov 25, 2007
Thread Status:
Not open for further replies.