Requests & Ideas, the beginning - page 220

 

Hello MLADEN,

Would it be possible to convert this indicator to MT5?

Regards.

Files:
 
GannErik:

Hello MLADEN,

Would it be possible to convert this indicator to MT5?

Regards.

You can use this code (or use the attached file)

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_plots   1
#property indicator_label1  "Daily open line"
#property indicator_type1   DRAW_LINE
#property indicator_style1  STYLE_DOT
#property indicator_color1  clrGray

input double TimeShift = 0; // Time shift (in hours)
double openLine[];
//
//
//
//
//

int OnInit() { SetIndexBuffer(0,openLine,INDICATOR_DATA); return(0); }
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[])
{
   if (Bars(_Symbol,_Period)<rates_total) return(-1);
      for (int i=(int)MathMax(prev_calculated-1,0); i<rates_total && !IsStopped(); i++)
      {
         string stime = TimeToString(time[i]+TimeShift*3600,TIME_DATE);
            openLine[i] = (i>0) ? (TimeToString(time[i-1]+TimeShift*3600,TIME_DATE)==stime) ? openLine[i-1] : open[i] : open[i];
      }
   return(rates_total);
}
Files:
 
mladen:

You can use this code (or use the attached file)

Thank you very much!


Regards.

 
bryanmcafee:

Hey all I searched on the forums but could not find Haos Visual with an alert when the fast line cross's over 0.00 and candle closes.    

 I was wondering if it could be added in i would be super appreciative.   

Thanks in advanced,

 

Bryan 

Bryan

Check here : https://www.mql5.com/en/forum/175037/page871


PS : set the levels of one of the wprs to 0 and you should get alerts on 0 crosses
 
dimitri1:

Dear mladen,

If is that possible, i would very much like to have the "dimi sr_2" indicator instead of Moving Averages, to use CCI and the levels +100 crossed up and -100 crossed down to have the same logic drawing the lines .... and one version with STOCHASTIC crossing up the 70 and crossing down the 30 level ....

I really thank you in advance for all you are contributing and offering ....

Best Regards

Dimitri

Dear mladen,

is that possible to have at least one of them ???? .... i leave it to your choice if will be CCI or Stochastic ....

Thank you for all.

Best Regards

Dimitri

 

Hello MLADEN,

Please make a multi timeframe dashboard  of HalfTrend indicator like attached image.If possible make it with different Amplitude in different TF settings.


Files:
 

hello

 

i need a indicator to show when spread width show it on candle with color and with a mini panel with low spread/average spread/high spread on X bars

and type in number how much spread on candle change 

 

thanks in advance 

 

Does somebody have an ea or a panel in 1 click trading style with opened code? I wish to create mine and need to see some code about it. I cannot find even one of these over the web with opened code.

 Thanks in advance. 

 

G'day Mladen,

Would it be possible to make the attached so it is in a separate window.

I would like to overlay it on a MACD sub window.

 

Kind regards and much appreciated.

 

Will 

 
Wildamaori:

G'day Mladen,

Would it be possible to make the attached so it is in a separate window.

I would like to overlay it on a MACD sub window.

 

Kind regards and much appreciated.

 

Will 

Due to the number of buttons it can not be done as that (as a tiny part of some other indicator). It can be done as this though (as an indicator in a separate window)


Reason: