Jump to content

heikobear

Members
  • Posts

    82
  • Joined

  • Last visited

Posts posted by heikobear

  1. Integrated Trading

     

    Hi

     

    I am trying to use integrated trading for some time now but even with a decent broker interface from PFGBEST it does not work.

    Most charts do not trade at all and if trade, not according to the chart. I am using Version 5.6 beta 3.

    Has anybody actually success in using the auto trading capacity with a cracked version?

    Thanks,

    Heiko

  2. Thanks! This explanation should come with the txt file.

     

     

    I have installed on x32 Windows XP SP3 and NSDT v.5.6 beta 3.

     

    Installation order should be:

     

    1. Run JSR_DLL.exe. Put there all the checkboxes, it will prompt serial, but as long as it does not, just click Next. In the end it will show ID. It must be copied into a notebook.

     

    2. Generate serial JuirkResDLL_KG.exe in using the given ID.

     

    3. Now you need to restart JSR_DLL.exe. To put down there all the checkboxes, and enter the generated serial number.

     

    4. First, put the lights version 1.02 and later version 1.1.

  3. Thanks! This explanation should come with the txt file.

     

     

    I have installed on x32 Windows XP SP3 and NSDT v.5.6 beta 3.

     

    Installation order should be:

     

    1. Run JSR_DLL.exe. Put there all the checkboxes, it will prompt serial, but as long as it does not, just click Next. In the end it will show ID. It must be copied into a notebook.

     

    2. Generate serial JuirkResDLL_KG.exe in using the given ID.

     

    3. Now you need to restart JSR_DLL.exe. To put down there all the checkboxes, and enter the generated serial number.

     

    4. First, put the lights version 1.02 and later version 1.1.

  4. Have you actually tested the indis?

    Both the Bowfort and Jurik require passwords and they do not run. The Bowfort ask for a password when you attach the indis.

    There is a password creater in the Jurik files, but it was not recognized...

     

     

  5. Hi

     

    I want to create an EA out of this indicator based on Dittmans´s instant buy sell strategy which works very well.

     

    As I am not a MQL programmer, I couldn´t figure out what are the exact entry rules. There are other indicators included (Bulls/Bears, MACD) but it seems the only important indicator is 001mq4

    Could someone give me some support here?

     

    Here is the code and link for the indicator package.

     

    http://www.2shared.com/file/OBAMMLyz/instant.html

     

    #property indicator_chart_window

    #property indicator_buffers 2

    #property indicator_color1 DodgerBlue

    #property indicator_color2 OrangeRed

     

    extern int Arrowperiod = 53;

    extern double Arrowsticker = 1.2;

    extern int SL_distance_pips = 200;

    extern bool EmailAlert = TRUE;

    extern int Upper = 2;

    extern int Downner = 3;

    string gs_104 = "bs";

    double g_ibuf_112[];

    double g_ibuf_116[];

    double g_ibuf_120[];

    datetime g_time_124;

     

    void DisplayAlert(string as_0, double ad_8, double ad_16, double ad_24, int ai_32) {

    string ls_36;

    string ls_44;

    string ls_52;

    string ls_60;

    if (Time[0] != g_time_124) {

    g_time_124 = Time[0];

    if (ad_24 != 0.0) ls_52 = "Price " + DoubleToStr(ad_24, 4);

    else ls_52 = "";

    if (ad_8 != 0.0) ls_44 = ", TakeProfit - " + DoubleToStr(ad_8, 4);

    else ls_44 = "";

    if (ad_16 != 0.0) ls_36 = ", StopLoss - " + DoubleToStr(ad_16, 4);

    else ls_36 = "";

    ls_60 = "Entry - " + as_0 + ls_52 + ls_44 + ls_36 + " ";

    drawSignalArrow(g_time_124, ad_16, ai_32, ls_60);

    if (ai_32 > 0) {

    SendMail("Buy signal alert ", "Buy signal at Ask=" + DoubleToStr(Ask, 4) + ", Bid=" + DoubleToStr(Bid, 4) + ", Date=" + TimeToStr(TimeCurrent(), TIME_DATE) + " " +

    TimeHour(TimeCurrent()) + ":" + TimeMinute(TimeCurrent()) + " Symbol=" + Symbol() + " Period=" + Period());

    }

    if (ai_32 < 0) {

    SendMail("Sell signal alert", "SELL signal at Ask=" + DoubleToStr(Ask, 4) + ", Bid=" + DoubleToStr(Bid, 4) + ", Date=" + TimeToStr(TimeCurrent(), TIME_DATE) + " " +

    TimeHour(TimeCurrent()) + ":" + TimeMinute(TimeCurrent()) + " Symbol=" + Symbol() + " Period=" + Period());

    }

    Alert(ls_60, Symbol(), ", ", Period(), " minute MT4 chart");

    }

    }

     

    int init() {

    int li_0;

    if (Arrowperiod == 8) li_0 = 2;

    else li_0 = 4;

    IndicatorBuffers(3);

    string ls_4 = "(" + Arrowperiod + ")";

    SetIndexBuffer(0, g_ibuf_112);

    SetIndexStyle(0, DRAW_NONE, STYLE_SOLID, li_0);

    SetIndexLabel(0, "" + ls_4);

    SetIndexBuffer(1, g_ibuf_116);

    SetIndexStyle(1, DRAW_NONE, STYLE_SOLID, li_0);

    SetIndexLabel(1, "" + ls_4);

    SetIndexBuffer(2, g_ibuf_120);

    ArraySetAsSeries(g_ibuf_120, TRUE);

    IndicatorShortName("Buy&Sell");

    IndicatorDigits(MarketInfo(Symbol(), MODE_DIGITS) + 1.0);

    return (0);

    }

     

    int deinit() {

    DelObj("");

    return (0);

    }

     

    double WMA(int ai_0, int a_period_4) {

    return (iMA(NULL, 0, a_period_4, 0, Upper, Downner, ai_0));

    }

     

    int start() {

    string ls_4;

    double lda_28[];

    double lda_32[];

    double ld_44;

    int l_ind_counted_0 = IndicatorCounted();

    if (l_ind_counted_0 < 0) return (-1);

    int li_12 = 1;

    int l_period_16 = MathFloor(MathSqrt(Arrowperiod));

    int li_20 = MathFloor(Arrowperiod / Arrowsticker);

    int li_24 = Bars - l_ind_counted_0 + Arrowperiod + 1;

    if (li_24 > Bars) li_24 = Bars;

    ArraySetAsSeries(lda_28, TRUE);

    ArrayResize(lda_28, li_24);

    ArraySetAsSeries(lda_32, TRUE);

    ArrayResize(lda_32, li_24);

    double ld_36 = Close[1];

    for (li_12 = 0; li_12 < li_24; li_12++) lda_28[li_12] = 2.0 * WMA(li_12, li_20) - WMA(li_12, Arrowperiod);

    for (li_12 = 0; li_12 < li_24 - Arrowperiod; li_12++) g_ibuf_120[li_12] = iMAOnArray(lda_28, 0, l_period_16, 0, Upper, li_12);

    for (li_12 = li_24 - Arrowperiod; li_12 > 0; li_12--) {

    lda_32[li_12] = lda_32[li_12 + 1];

    if (g_ibuf_120[li_12] > g_ibuf_120[li_12 + 1]) lda_32[li_12] = 1;

    if (g_ibuf_120[li_12] < g_ibuf_120[li_12 + 1]) lda_32[li_12] = -1;

    ls_4 = "trendx=" + lda_32[li_12] + " trendx+1=" + ((lda_32[li_12 + 1])) + " x=" + li_12 + " countedbars=" + l_ind_counted_0;

    if (lda_32[li_12] > 0.0) {

    g_ibuf_112[li_12] = g_ibuf_120[li_12];

    if (lda_32[li_12 + 1] < 0.0) g_ibuf_112[li_12 + 1] = g_ibuf_120[li_12 + 1];

    if (lda_32[li_12 + 1] < 0.0) {

    if (li_12 == 1) {

    ld_44 = Low[4] - SL_distance_pips * Point;

    DisplayAlert(" Buy signal - ", 0, ld_44, ld_36, 1);

    }

    if (l_ind_counted_0 == 0) drawSignalArrow(Time[li_12], Low[li_12 + 1] - SL_distance_pips * Point, 1, ls_4);

    }

    g_ibuf_116[li_12] = EMPTY_VALUE;

    } else {

    if (lda_32[li_12] < 0.0) {

    g_ibuf_116[li_12] = g_ibuf_120[li_12];

    if (lda_32[li_12 + 1] > 0.0) g_ibuf_116[li_12 + 1] = g_ibuf_120[li_12 + 1];

    if (lda_32[li_12 + 1] > 0.0) {

    if (li_12 == 1) {

    ld_44 = High[4] + SL_distance_pips * Point;

    DisplayAlert(" Sell signal - ", 0, ld_44, ld_36, -1);

    }

    if (l_ind_counted_0 == 0) drawSignalArrow(Time[li_12], High[li_12 + 1] + SL_distance_pips * Point, -1, ls_4);

    }

    g_ibuf_112[li_12] = EMPTY_VALUE;

    }

    }

    }

    return (0);

    }

     

    void DelObj(string as_0) {

    string l_name_8;

    int li_20;

    string ls_24;

    for (int li_16 = ObjectsTotal() - 1; li_16 >= 0; li_16--) {

    l_name_8 = ObjectName(li_16);

    li_20 = StringLen(as_0) + StringLen(gs_104);

    ls_24 = as_0 + gs_104;

    if (StringSubstr(l_name_8, 0, li_20) == ls_24) ObjectDelete(l_name_8);

    }

    }

     

    void drawSignalArrow(int a_datetime_0, double a_price_4, int ai_12, string a_text_16) {

    int li_24;

    color l_color_36;

    if (ai_12 > 0) {

    li_24 = 233;

    a_price_4 -= 1.0 * Point;

    } else {

    li_24 = 234;

    a_price_4 += 10.0 * Point;

    }

    string l_name_28 = gs_104 + "signalArrow" + a_price_4 + a_datetime_0 + li_24;

    if (ai_12 < 1) l_color_36 = Red;

    else l_color_36 = Green;

    ObjectDelete(l_name_28);

    ObjectCreate(l_name_28, OBJ_ARROW, 0, a_datetime_0, a_price_4, 0, 0, 0, 0);

    ObjectSet(l_name_28, OBJPROP_WIDTH, 2);

    ObjectSet(l_name_28, OBJPROP_ARROWCODE, li_24);

    ObjectSet(l_name_28, OBJPROP_COLOR, l_color_36);

    ObjectSetText(l_name_28, a_text_16, 0);

    }

  6. I will .Otherwise did you develop strategies with turning points with peak valley parameters to estimate probabilities of prices, indicators etc...

     

    I think I did this with the Noxa indicators but other strategies turned out better.

    I use rather simplistic strategies like combining Cluster, Turboprop and Neural indicators using the same inputs like RSI, CCI, Stoch. etc.

    I also realized using a prediction based on minimized error in a trading strategy is more effective than a prediction with trading rules.

    I don´t use fuzzy sets and don´t know the technique.

  7. Problems with NST

     

    Hi

     

    I have two serious problems with NST (5.6 beta)

     

    1. Date: The date is 1 day in advance. I don´t know whether this is a problem of MTFeed or NST.

     

    2. Trade execution in NST: Some strategies simply are not executed in the Alerts and Order window. Again, don´t know whether it is MTFeed or NST.

     

    Anyone who can give me a hint?

  8. Sorry, I believe I was not clear.

    I mean the system rules in the code. It uses MACD and Bulls/Bears but I cannot read MQL code.

    For some reason the signals are pretty good.

     

     

    Enter at arrow (GREEN-long...RED-short)

    Exit at next arrow (don't agree with this as you loose a lot of the pips gained)

    Only trade in trend direction (this is determined by the GREEN lines in the bottom indicator...if flat no trend DON'T TRADE...)

    Stop Loss....the top/bottom of candle before entry arrow (previous candle) + 10pips for 5min timeframe, 15pips for 15-30min, 20pips for 1hr and above

     

    Timeframes: M5 (not recommended), M15, M30, 1H, 4H ( 1H is default settings )

    Most useful timeframes M15, M30 ( make sure to set correct setting for each timeframe)

     

    settings

    H4 - Arrowperiod - 45-65 (55) Arrowsticker - 1.5-2.0 (1.9)

    H1 - Arrowperiod - 44-64 (53) Arrowsticker - 1.1-1.7 (1.2)

    M30 - Arrowperiod - 26-42 (37) Arrowsticker - 1.1-1.6 (1.3)

    M15- Arrowperiod - 44-64 (53) Arrowsticker - 1.5-1.1 (1.2)

    M5 - Arrowperiod - 15-30 (65) Arrowsticker - 1.1-1.4 (1.2)

  9. Hi KESK

     

    I am still a beginner in NST and do struggle myself. I have operational problems like the signals on the chart do not coincide with the signals executed.

     

    I don´t have time to write a tutorial, but you can pm me and I sent you a couple of strategies for you to work on.

    I don´t know books but you can google that. Actually, the best would be to buy the application and to rely on their customer service. I am seriously considering that especially for automated live trading.

     

    Hi Heikobear,

     

    Glad that you have good working solutions. I have been trying vainly to create a profitable/good trading solution, but couldnt come up with one so far.

     

    Is it possible that you could write a good tutorial. For example, do we first have to create a prediction or indicator to move to the next step of trading strategy....like this.

     

    Also, is it possible that you post the trading strategies given by re-sellers?

     

    Is there a good book that you can refer me to learn better and use it effectively create a trading strategy?

  10. I don´t see the point. This happens when using the wrong digits for the stop loss.

     

    On 5 min chart went long EURUSD with a current PL of 32 pips. This matches with the trend line break.

    Clearlu useful indicator.

     

    this indi is a little bit tricky

    the distance between price and arrow is so large that you can't see all arrows with default chartwindow settings

    change the scale of the price axis and look what happens when the pair ranges

    false signals over and over again

  11. I am talking about Instant Buy and Sell.

     

    It works well on GBP and Eur/USD 15min, but adding other pairs pretty the same picture.

    He doesnt recommend 5min, but it looks very well and does produce even on this TF very few signals.

    For example, on EURUSD 5min it went short YESTERDAY at 20.30 GMT+2 and is still short with a current PL of 107 pips.

×
×
  • Create New...