Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Gillou

Convert to MQL5

Recommended Posts

I try without sucees to convert this code in easylanguage to MQL5 ...

 

Inputs: price(H+L+C/3);

 

Vars: M1(0),

M2(0),

V1(0),

V2(0);

 

M1 = (4*price[0]+ 3*price[1] + 2*price[2] + price[3])/10;

M2 = (4*M1[0]+ 3*M1[1] + 2*M1[2]+ M1[3])/10;

 

V1 = 2*M1-M2;

V2 = (3*V1[0] +2*V1[1] + V1[2]) /6;

 

plot1(V2,"V2");

plot2(V1,"V1");

 

Thanks to your help ;)

Share this post


Link to post
Share on other sites
I try without sucees to convert this code in easylanguage to MQL5 ...

 

Inputs: price(H+L+C/3);

 

Vars: M1(0),

M2(0),

V1(0),

V2(0);

 

M1 = (4*price[0]+ 3*price[1] + 2*price[2] + price[3])/10;

M2 = (4*M1[0]+ 3*M1[1] + 2*M1[2]+ M1[3])/10;

 

V1 = 2*M1-M2;

V2 = (3*V1[0] +2*V1[1] + V1[2]) /6;

 

plot1(V2,"V2");

plot2(V1,"V1");

 

Thanks to your help ;)

 

 

 

What have you tried?

 

How did it fail?

Share this post


Link to post
Share on other sites

//+------------------------------------------------------------------+

//| TEST INDICATEUR |

//| |

//| |

//+------------------------------------------------------------------+

#property copyright "Pas encore de copyright LOL"

#property link "http://www.gagne-pas-encore-des-sous.com"

#property version "1.00"

 

#property indicator_chart_window

#property indicator_buffers 2

#property indicator_plots 2

#property indicator_color1 Red

#property indicator_color2 Blue

#property indicator_type1 DRAW_LINE

#property indicator_type2 DRAW_LINE

#property indicator_style1 STYLE_SOLID

#property indicator_style2 STYLE_SOLID

#property indicator_width1 1

#property indicator_width2 1

 

//---- indicator parameters

 

 

//---- indicator buffers

double ExtMapBuffer1[];

double ExtMapBuffer2[];

 

double V1[];

double V2;

double H1[];

double H2;

 

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int OnInit()

{

//--- set empty value

PlotIndexSetDouble(1,PLOT_EMPTY_VALUE,0.0);

PlotIndexSetDouble(2,PLOT_EMPTY_VALUE,0.0);

 

//---- indicator buffers mapping

SetIndexBuffer(1,ExtMapBuffer1,INDICATOR_DATA);

SetIndexBuffer(2,ExtMapBuffer2,INDICATOR_DATA);

//---- initialization done

return(0);

}

 

//+------------------------------------------------------------------+

//| Data Calculation Function for Indicator |

//+------------------------------------------------------------------+

int OnCalculate(const int rates_total,

const int prev_calculated,

const datetime &time[],

const double &open[],

const double &high[],

const double &low[],

const double &Close[],

const long &tick_volume[],

const long &volume[],

const int &spread[])

{

ArraySetAsSeries(low, true);

ArraySetAsSeries(high, true);

ArraySetAsSeries(Close, true);

 

//Fill buffers with zero values for the first run

if (prev_calculated == 0)

{

ArrayInitialize(ExtMapBuffer1,0.0);

ArrayInitialize(ExtMapBuffer2,0.0);

}

 

indic(Close, rates_total);

 

//---- done

return(rates_total);

}

 

//+------------------------------------------------------------------+

//| Simple test d affichage avec le calcul sur Close uniquement |

//+------------------------------------------------------------------+

void indic(const double &Close[], int rates_total)

{

int pos = 0 ;

 

 

//---- boucle de calcul

while (pos < rates_total - 7)

{

H1[pos] = (4 * Close[pos] + 3 * Close[pos+1] + 2 * Close[pos+2] + Close[pos+3]) / 10;

 

H2 = (4 * H1[pos] + 3 * H1[pos+1] + 2 * H1[pos+2] + 1 * H1[pos+3] ) / 10;

 

V1[pos] = ( 2 * H1[pos] - H2 );

 

V2 = ( 3 * V1[0] + 2 * V1[1] + V1[2] ) /6;

 

ExtMapBuffer1[pos] = V1[pos];

 

ExtMapBuffer2[pos] = V2;

 

pos++;

}

}

 

I'm a newbie in MQL5, I have a "array out of range in 'test.mq5' (92,7) " and nothing in the screen (no compile error)...

Share this post


Link to post
Share on other sites

Comment out all lines that attempt to access the array. Uncomment them one at a time until you find the lines that do not cause the error. You will have to switch the indicator back to on within your chart each time you make one of these changes because the chart looks for different errors that the compiler doesn't look for.

 

Eventually you will have succeeded in limiting the bug to the few lines of code that are causing it. Then if you still can't guess exactly what's causing it try adding new lines one at a time that progressively test different levels of the same ideas in the lines of code you know are causing the problem. In other words, you want to write a new line of code that defines the smallest case of this bug and then add complexity if you have more than one case or class of bugs.

 

If you keep everything simple then it is relatively easy to find where the bug is.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • ...hallucinates.... Student: “What if we gave the monkey LSD?” Guru: “The monkey already did LSD”
    • Question: To those that had/have cancer, what were the signs that made you think “something is not right here” to make you go see a doctor? Answer: So, 5/25/2018, I woke up, got ready for work, and as I walked to my car, I started gagging. Like something was stuck in my throat and I needed to clear it. And then it went away.   But 10 minutes after that, I was T-boned at 40mph on the driver side door. But what made me see a doctor was while my muscles felt better and bruises were going away, the gagging still continued, I started having fevers, my neck felt swollen, I was having such a hard time breathing, and I'd have random sharp pains in my chest, but not from where the seat belt saved me.   2 weeks after the accident, I finally see an urgent care doctor, who looks me over, tells me I'm fine, but luckily requests a neck X-ray. And I ask for a chest X-ray, which he rolls his eyes but let me have (most of my pain was in the neck, so I understand).   The very next day, he calls and says “So, that chest X-ray shows there's a 4 inch mass on your heart and lungs, and your lungs have been filling up with fluid, as well as in your pericardial (heart) wall. We need you to come in tomorrow.”   Turns out the big mass, due to the accident, caused my heart and lungs to tear and fill with fluid, the swollen neck and gagging was caused by 2 metastasized tumors, and the fevers and weight loss were symptoms. Stage 4b Hodgkin's Lymphoma.   But thankfully, we went very aggressive with chemo (and had a lot of bad side effects that don't normally happen to patients), and now I'm about 16 months cancer-free. Yay lucky X-rays! Rachel Jurina, Quora Source: https://www.quora.com/To-those-that-had-have-cancer-what-were-the-signs-that-made-you-think-something-is-not-right-here-to-make-you-go-see-a-doctor   Profits from free accurate cryptos signals: https://www.predictmag.com/  
    • As a man, the reality of life is the harshest part. I don’t mind looking older or becoming weaker over time; it’s nature.   Have you ever heard that the only people who will be loved unconditionally are women and children? Men will only be loved as long as they can provide until they are no longer needed. It doesn’t matter if you already did your best to get your kids to the best school or get the best things for them, if you stop before they’re done with it, there will be no thank you. The only thing they will remember is that they have to quit school at 15, ignoring all the previous 15 years of life you provided for them. The only people who will accept you, no matter what, are your parents. But in this situation, you might be that ungrateful child.   EDIT: Wow, I didn’t think this would get so much attention.   For those who disagree, I can only say that everyone has their problem. If you don’t get the chance to face such a thing, be grateful. Remember, sometimes what you throw in the garbage is something that someone wishes ever to have.” – ElZee, Quora   Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • The good thing i had noticed so far is that the traderpot value is also on the rise..
    • yup its a gradual rollout the right way in my opinion, its really good and its exciting for the sto in 2027
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.