Jump to content

gctex

Members
  • Posts

    74
  • Joined

  • Last visited

Posts posted by gctex

  1. Hi guys,

     

    I am having problems in installing the trdeguider plugin here. I installed the uncracked version (in first post) and then installed the cracked version . but both asking for a password and username when installing. there is no user name and password given in the instalation files. could any of you help.

     

    I am having the same issue. What's the username/password please?

  2. Hey soundfx that worked! ... now I know u r busy so I am trying to add the buffers myself. If you can please let me know if this looks ok I'd be grateful.

     

    ===================

    #property indicator_buffers 2

     

    --------------

     

    double Up[];

    double Dn[];

     

    -------------

     

    SetIndexBuffer(0, Up);

    SetIndexBuffer(1, Dn);

    --------------

     

    string nameh = "HighLine";

    string namel = "LowLine";

     

    -------------

     

    if (iHigh(NULL,0,BarCount) > HighLineEnd) {

    HighLineEnd = iHigh(NULL,0,BarCount);

    HighLineEndTime = iTime(NULL,0,BarCount);

     

    datetime time0L;

    if (ObjectFind(nameh) != -1) {

    double tlh = ObjectGetValueByShift(nameh, 0);

    if (time0L != Time[0]){

    Up[0] = tlh;

    }

    }

    }

    -------------

     

    The above code is (my humble attempt) to print the Upper buffer value. For some reason it doesn't work right. Btw, you mentioned 4 buffers but then you have only two objects "HighLine" & "LowLine". So why you need 4 buffers?

  3. Yeah smurf, I am going by 3:00 AM CST. Here are more details about this strategy.

     

    http://forex-strategies-revealed.com/advanced/trendlines-breakout

     

    I guess someone already wrote an EA about it, if you wish to check it out:

     

    http://forums.forex-strategies-revealed.com/advanced-system-trend-lines-breakout-system-t218-130.html

     

    SoundFx's indicator works just fine, if only it can be made to draw the trend lines for all previous days plus the buffer values, then I can just plug it into my existing EA and test it fine.

  4. Hi gctex,

     

    I had a bit of spare time so I've attempted to create this indicator. It looks to be working ok, though let me know of any problems.

     

    http://www.multiupload.com/Q26QNVJLNI

     

    Beautiful !!! that's pretty much I can say about it ... :)

     

    Thanks a great lot.

     

    If possible, can you please add these:

     

    1) Can you also display the buffer values of upper & lower trend lines so that I can call it from an EA?

    2) It draws the trend lines for the latest day. Is it possible to draw the trend lines for each previous day? (Would be helpful for easy visual confirmation)

     

    Thanks once again

  5. I am looking for a Trend Line Indicator that can plot the following:

     

    1) Upper line connecting the higher high of the last 12 bars of the previous day with the higher high of the last 3 bars of the current day

     

    and

     

    2) Lower line connecting the lower low of the last 12 bars of the previous day with the lower low of the last 3 bars of the current day

     

    Does anyone have such an indicator please?

×
×
  • Create New...