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.

backfoot

Need Rewrite from Mql or Multichart for NT

Recommended Posts

Guest forsearch

You got the code to post in plaintext here? Or are we to decipher whatever it is you're looking for....

Share this post


Link to post
Share on other sites

... here is ... a mql...

 

 

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

//| Custom MACD.mq4 |

//| Copyright © 2004, MetaQuotes Software Corp. |

//| http://www.metaquotes.net/ |

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

#property copyright "Copyright © 2004, MetaQuotes Software Corp."

#property link "http://www.metaquotes.net/"

//---- indicator settings

#property indicator_separate_window

#property indicator_buffers 2

#property indicator_color1 Green

#property indicator_color2 Orange

//---- indicator parameters

extern int FastEMA=34;

extern int SlowEMA=144;

extern int SignalSMA=34;

//---- indicator buffers

double ind_buffer3[];

double ind_buffer4[];

 

 

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

//| Custom indicator initialization function |

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

int init()

{

//---- drawing settings

SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,1);

SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,1);

 

// SetIndexDrawBegin(1,SignalSMA);

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

//---- indicator buffers mapping

if(!SetIndexBuffer(0,ind_buffer3) && !SetIndexBuffer(1,ind_buffer4))

Print("cannot set indicator buffers!");

//---- name for DataWindow and indicator subwindow label

IndicatorShortName("MACDForest("+FastEMA+","+SlowEMA+","+SignalSMA+")");

SetIndexLabel(0,"MACDforest");

SetIndexLabel(1,"MACDforest");

//---- initialization done

return(0);

}

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

//| Moving Averages Convergence/Divergence |

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

int start()

{

 

int limit,i;

double MACDForestPre;

int counted_bars=IndicatorCounted();

//---- check for possible errors

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

//---- last counted bar will be recounted

if(counted_bars>0) counted_bars--;

limit=Bars-counted_bars;

for(i=limit; i>=0; i--) {

double MACDForest=iMACD(NULL,0,FastEMA,SlowEMA,SignalSMA,PRICE_MEDIAN,MODE_MAIN,i)-iMACD(NULL,0,FastEMA,SlowEMA,SignalSMA,PRICE_MEDIAN,MODE_SIGNAL,i);

if (MACDForest>=MACDForestPre) {ind_buffer3=MACDForest; ind_buffer4=EMPTY_VALUE;}

if (MACDForest<MACDForestPre) {ind_buffer4=MACDForest; ind_buffer3=EMPTY_VALUE;}

 

MACDForestPre=MACDForest;

}

//---- done

return(0);

}

 

 

... thanks for response..

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.


×
×
  • Create New...

Important Information

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