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 to Rewrite Specific Macd from MQL or MultiChart for NT

Recommended Posts

Guest forsearch
to any programmers........ i need to copy indicator from mql to NT its simple but i very far from this matters

 

Post the code in plaintext here or in the other post you made

Share this post


Link to post
Share on other sites

and here...

 

... 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_HIST OGRAM,STYLE_SOLID,1);

SetIndexStyle(1,DRAW_HIST OGRAM,STYLE_SOLID,1);

 

// SetIndexDrawBegin(1,Signa lSMA);

IndicatorDigits(MarketInf o(Symbol(),MODE_DIGITS)+1 );

//---- indicator buffers mapping

if(!SetIndexBuffer(0,ind_ buffer3) && !SetIndexBuffer(1,ind_buf fer4))

Print("cannot set indicator buffers!");

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

IndicatorShortName("MACDF orest("+FastEMA+","+SlowE MA+","+SignalSMA+")");

SetIndexLabel(0,"MACDfore st");

SetIndexLabel(1,"MACDfore st");

//---- initialization done

return(0);

}

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

//| Moving Averages Convergence/Divergence |

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

int start()

{

 

int limit,i;

double MACDForestPre;

int counted_bars=IndicatorCou nted();

//---- 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,F astEMA,SlowEMA,SignalSMA, PRICE_MEDIAN,MODE_MAIN,i)-iMACD(NULL,0,FastEMA,Slow EMA,SignalSMA,PRICE_MEDIA N,MODE_SIGNAL,i);

if (MACDForest>=MACDForestPr e) {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.