Jump to content

janina21

Members
  • Posts

    18
  • Joined

  • Last visited

Posts posted by janina21

  1. Here are some good tips from DK for a correct Elliott Wave labelling:

     

    http://sweeglu.com/how-to-label-elliott-wave-counts-perfectly-and-accurately-tips-and-tricks-by-deepak-kumar/

     

    Take the time to study the other articles of the "Elliott Wave Education" section too.

     

    You should not switch off your brain if you use any Elliott Wave software !

     

    Sixer

     

    Edit:

    Check this info also:

    https://www.4shared.com/rar/dTzUO5Gaba/Elliot_Wave_DNA_Manual.htm

     

    Thank you for the information.

  2. try this

    compile to indicator, and attach to chart.

    you will find picture scereen shot at expert>files folder.

    enjoy

     

     

    #property indicator_chart_window

     

    extern string identification = "ScreenShot";

    extern int size.x = 640;

    extern int size.y = 480;

    int g_datetime_92 = 0;

    bool gi_96 = FALSE;

     

    string fYear() {

    return (TimeYear(Time[0]));

    }

     

    string fMonth() {

    int l_month_0 = TimeMonth(Time[0]);

    if (l_month_0 < 10) return ("0" + l_month_0);

    return (l_month_0);

    }

     

    string fDay() {

    int l_day_0 = TimeDay(Time[0]);

    if (l_day_0 < 10) return ("0" + l_day_0);

    return (l_day_0);

    }

     

    string fHour() {

    int l_hour_0 = TimeHour(Time[0]);

    if (l_hour_0 < 10) return ("0" + l_hour_0);

    return (l_hour_0);

    }

     

    string fMinute() {

    int l_minute_0 = TimeMinute(Time[0]);

    if (l_minute_0 < 10) return ("0" + l_minute_0);

    return (l_minute_0);

    }

     

    string fSeconds() {

    int l_second_0 = TimeSeconds(Time[0]);

    if (l_second_0 < 10) return ("0" + l_second_0);

    return (l_second_0);

    }

     

    int start() {

    int l_datetime_0;

    if (!gi_96) {

    l_datetime_0 = iTime(NULL, 0, 0);

    if (g_datetime_92 == l_datetime_0) return (0);

    g_datetime_92 = l_datetime_0;

    gi_96 = TRUE;

    return (0);

    }

    gi_96 = FALSE;

    string l_str_concat_4 = StringConcatenate(identification, "\\", Symbol(), "\\", Period(), "\\", fYear(), fMonth(), fDay(), "\\");

    WindowScreenShot(StringConcatenate(l_str_concat_4, identification, ".", Symbol(), ".", Period(), ".", fYear(), fMonth(), fDay(), ".", fHour(), fMinute(), fSeconds(), ".gif"), size.x, size.y);

    return (0);

    }

     

    Thank you .. was searching for something like this.

  3. Krishna, have a look and test this This is the work of xaphod If you have specific questions about the indicators or if you want mq4 indicators to make an EA, you have to ask him on his website.www.xaphod.com.

     

    Now regarding so called "repainting".

    MTF indicators will update/redraw all bars on the lower time-frame that represent the open higher time-frame bar until the higher time-frame bar closes. This is normal and expected behavior for an MTF indicator.

    You can use the 'xSuperTrend Alert' Indicator to give alerts for any timeframe you wish. You will have to add it to your chart in addition to the xSuperTrend indicator you are using.

    All bars on the chart associated with a higher time-frame bar that is open will continue to update with the current status of the higher time-frame supertrend until that bar closes. Krishna, I think it would be easier for you to understand the nature of MTF indicators and the repainting which it is often accused of, is to just remember "that MTF indicators update/redraw all bars on the lower time-frame that represent the open higher time-frame bar until the higher time-frame barcloses. This is normal and expected behavior for an MTF indicator." That's a quote from Xaphod himself.

     

     

     

     

    XSupertrend Pack.zip (40.95KB)

    https://www.sendspace.com/file/3wg5t3

    Includes (all ex4 files)

    xSupertrendMTF

    xSupertrendAlert

    xSupertrendCandles

    xSupertrendTapeMTF

    xSuperTrend

    xSupertrendTape

    TF Slicer

    xSuperTrend.tpl (template)

     

    Thank you .

  4. Re: hermanhess's comments, I think you're correct that she does not trade. When she presents a course with a live trading component, such as a couple of the courses that Bulak mentioned, someone else does the live trading, usually John Carter or Bruce Marshall of Simpler Trading. She's a professional technical analyst, not a trader, but that does not discount the value of her work.

     

    Bulak said "yep, I found this video in Google cache was from 2013."

     

    A few of the other courses you mentioned can be found that way too, you just have to know how to search.

     

     

    Sir I tried to search but only found this one..

    1) A - Z Fibonacci Analysis DVD 409 mins

    Will you please give a link to other courses that you found? Thanks in advance.. :)

×
×
  • Create New...