+ Îòâåòèòü â òåìå
Ñòðàíèöà 7 èç 10 ÏåðâàÿÏåðâàÿ 1 2 3 4 5 6 7 8 9 10 ÏîñëåäíÿÿÏîñëåäíÿÿ
Ïîêàçàíî ñ 61 ïî 70 èç 91

Òåìà: Èíäèêàòîð dPOC

  1. #61
    ClusterDelta.com Team
    Ðåãèñòðàöèÿ
    27.10.2011
    Ñîîáùåíèé
    4,256
    Ñêàçàë(à) ñïàñèáî
    473
    Ïîáëàãîäàðèëè 2,157 ðàç(à) â 1,128 ñîîáùåíèÿõ
    Öèòàòà Ñîîáùåíèå îò Lio46 Ïîñìîòðåòü ñîîáùåíèå
    Hi Deniss, i'm sorry to disturb you again.
    I tryed Dpoc indicator on EUR/JPY cross, and i found the same problem you solved on USD/JPY.
    I think it could be easy to solve beacause it should be the same bug you fixed early, but with EUR/JPY cross.
    Thank you in advance for your help mate.
    Lio,

    there are no data (and no volumes) on any forex crosses like Eur/Jpy.

    Only main pairs correlated to USD. You can see list on the main page of site.

  2. #62
    Ïîëüçîâàòåëü
    Ðåãèñòðàöèÿ
    27.11.2014
    Ñîîáùåíèé
    6
    Ñêàçàë(à) ñïàñèáî
    0
    Ïîáëàãîäàðèëè 0 ðàç(à) â 0 ñîîáùåíèÿõ
    Ok, thank you Deniss for your answer.

  3. #63
    Ïîëüçîâàòåëü
    Ðåãèñòðàöèÿ
    13.01.2012
    Ñîîáùåíèé
    13
    Ñêàçàë(à) ñïàñèáî
    0
    Ïîáëàãîäàðèëè 0 ðàç(à) â 0 ñîîáùåíèÿõ
    Good morning to all and to Deniss ;)

    My last post is about some years ago ;) ....nice to re-meet you ;)

    I am testing your MT4 indicators but I have one problem with icustom() function beacuse I found desrciption of 3.1 version of dPoc but in the 3.5 I saw that someting is changed.

    input string indName= "ClusterDelta_dPOC_3.5";
    input string instrument="AUTO";
    input string Update_interval="every_1min";
    input string MetaTrader_GMT="AUTO";
    input string dPOC_Period="Daily";
    input int Amount_of_dPOCs=1;
    input bool Forex_auto_shift=true;
    input int Forex_shift=0;

    double dpoc=iCustom(_Symbol,_Period,indName,instrument,Up date_interval,MetaTrader_GMT,dPOC_Period,Amount_of _dPOCs,Forex_auto_shift,Forex_shift,0,1);

    I used only buffer 0 in this example but I tested also for buffer 0 to 7 but nothing passed by iCustom()

    Have I made some error in the "type" declaration .....example --> input string Update_interval="every_1min"; <-- Is Update_interval a string type? In dPoc 3.1 was in seconds.

    Many thanks ;)

  4. #64
    ClusterDelta.com Team
    Ðåãèñòðàöèÿ
    27.10.2011
    Ñîîáùåíèé
    4,256
    Ñêàçàë(à) ñïàñèáî
    473
    Ïîáëàãîäàðèëè 2,157 ðàç(à) â 1,128 ñîîáùåíèÿõ
    Öèòàòà Ñîîáùåíèå îò ketron82 Ïîñìîòðåòü ñîîáùåíèå
    Good morning to all and to Deniss ;)

    My last post is about some years ago ;) ....nice to re-meet you ;)

    I am testing your MT4 indicators but I have one problem with icustom() function beacuse I found desrciption of 3.1 version of dPoc but in the 3.5 I saw that someting is changed.

    input string indName= "ClusterDelta_dPOC_3.5";
    input string instrument="AUTO";
    input string Update_interval="every_1min";
    input string MetaTrader_GMT="AUTO";
    input string dPOC_Period="Daily";
    input int Amount_of_dPOCs=1;
    input bool Forex_auto_shift=true;
    input int Forex_shift=0;

    double dpoc=iCustom(_Symbol,_Period,indName,instrument,Up date_interval,MetaTrader_GMT,dPOC_Period,Amount_of _dPOCs,Forex_auto_shift,Forex_shift,0,1);

    I used only buffer 0 in this example but I tested also for buffer 0 to 7 but nothing passed by iCustom()

    Have I made some error in the "type" declaration .....example --> input string Update_interval="every_1min"; <-- Is Update_interval a string type? In dPoc 3.1 was in seconds.

    Many thanks ;)
    Update_Interval is not a string - it is ENUM

    enum Update_Intervals {every_1min=60, every_5min=300 };

    so you can just use integer values 60

  5. #65
    Ïîëüçîâàòåëü
    Ðåãèñòðàöèÿ
    13.01.2012
    Ñîîáùåíèé
    13
    Ñêàçàë(à) ñïàñèáî
    0
    Ïîáëàãîäàðèëè 0 ðàç(à) â 0 ñîîáùåíèÿõ
    Tnx Deniss....I was busy this last days.

    Many thanks for replay.....I corrected the code but there is something incorrect ;)
    I Will post all the test code corrente. With other clusterdelta indicators I haven't found problem.

    Many tanks again :)

  6. #66
    Ïîëüçîâàòåëü
    Ðåãèñòðàöèÿ
    13.01.2012
    Ñîîáùåíèé
    13
    Ñêàçàë(à) ñïàñèáî
    0
    Ïîáëàãîäàðèëè 0 ðàç(à) â 0 ñîîáùåíèÿõ
    This is the source code modified but it not work correctly ;)

    I declared "input int Update_interval=60;" but nothing again ;)




    //+------------------------------------------------------------------+
    //| cluster test.mq4 |
    //| Copyright 2017, SIMITCH Software Corp. |
    //| https://www.mql5.com |
    //+------------------------------------------------------------------+
    #property copyright "Copyright 2017, SIMITCH Software Corp."
    #property link "https://www.mql5.com"
    #property version "1.00"
    #property strict

    input string indName= "ClusterDelta_dPOC_3.5";
    input string instrument="AUTO";
    input int Update_interval=60;
    input string MetaTrader_GMT="AUTO";
    input int dPOC_Period=60;
    input int Amount_of_dPOCs=1;
    input bool Forex_auto_shift=true;
    input int Forex_shift=0;
    //+------------------------------------------------------------------+
    //| Expert initialization function |
    //+------------------------------------------------------------------+
    int OnInit()
    {
    //---

    //---
    return(INIT_SUCCEEDED);
    }
    //+------------------------------------------------------------------+
    //| Expert deinitialization function |
    //+------------------------------------------------------------------+
    void OnDeinit(const int reason)
    {
    //---

    }
    //+------------------------------------------------------------------+
    //| Expert tick function |
    //+------------------------------------------------------------------+
    void OnTick()
    {
    //---
    double dpoc=iCustom(_Symbol,_Period,indName,instrument,Up date_interval,MetaTrader_GMT,dPOC_Period,Amount_of _dPOCs,Forex_auto_shift,Forex_shift,0,1);
    double dpoc1=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,1,1);
    double dpoc2=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,2,1);
    double dpoc3=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,3,1);
    double dpoc4=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,4,1);
    double dpoc5=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,5,1);
    double dpoc6=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,6,1);
    double dpoc7=iCustom(_Symbol,_Period,indName,instrument,U pdate_interval,MetaTrader_GMT,dPOC_Period,Amount_o f_dPOCs,Forex_auto_shift,Forex_shift,7,1);




    Alert(dpoc, " ", dpoc1," ", dpoc2, " ", dpoc3, " ");
    }
    //+------------------------------------------------------------------+

  7. #67
    ClusterDelta.com Team
    Ðåãèñòðàöèÿ
    27.10.2011
    Ñîîáùåíèé
    4,256
    Ñêàçàë(à) ñïàñèáî
    473
    Ïîáëàãîäàðèëè 2,157 ðàç(à) â 1,128 ñîîáùåíèÿõ
    Öèòàòà Ñîîáùåíèå îò ketron82 Ïîñìîòðåòü ñîîáùåíèå
    This is the source code modified but it not work correctly ;)

    I declared "input int Update_interval=60;" but nothing again ;)
    Send me your email in PM

  8. #68
    Ïîëüçîâàòåëü
    Ðåãèñòðàöèÿ
    13.01.2012
    Ñîîáùåíèé
    13
    Ñêàçàë(à) ñïàñèáî
    0
    Ïîáëàãîäàðèëè 0 ðàç(à) â 0 ñîîáùåíèÿõ
    Öèòàòà Ñîîáùåíèå îò deniss Ïîñìîòðåòü ñîîáùåíèå
    Send me your email in PM
    You have inbox full ahhaha ;)

  9. #69
    ClusterDelta.com Team
    Ðåãèñòðàöèÿ
    27.10.2011
    Ñîîáùåíèé
    4,256
    Ñêàçàë(à) ñïàñèáî
    473
    Ïîáëàãîäàðèëè 2,157 ðàç(à) â 1,128 ñîîáùåíèÿõ
    Öèòàòà Ñîîáùåíèå îò ketron82 Ïîñìîòðåòü ñîîáùåíèå
    You have inbox full ahhaha ;)
    fixed

  10. #70
    Ïîëüçîâàòåëü
    Ðåãèñòðàöèÿ
    13.01.2012
    Ñîîáùåíèé
    13
    Ñêàçàë(à) ñïàñèáî
    0
    Ïîáëàãîäàðèëè 0 ðàç(à) â 0 ñîîáùåíèÿõ
    Öèòàòà Ñîîáùåíèå îò deniss Ïîñìîòðåòü ñîîáùåíèå
    fixed
    I Sent you a PM with My mail. Have you recived? ?

    Tnx deniss

+ Îòâåòèòü â òåìå
Ñòðàíèöà 7 èç 10 ÏåðâàÿÏåðâàÿ 1 2 3 4 5 6 7 8 9 10 ÏîñëåäíÿÿÏîñëåäíÿÿ

Âàøè ïðàâà

  • Âû íå ìîæåòå ñîçäàâàòü íîâûå òåìû
  • Âû íå ìîæåòå îòâå÷àòü â òåìàõ
  • Âû íå ìîæåòå ïðèêðåïëÿòü âëîæåíèÿ
  • Âû íå ìîæåòå ðåäàêòèðîâàòü ñâîè ñîîáùåíèÿ
           

 


(C) 2009-2023 ClusterDelta.com.