This indicator it has somehow corrupted should be cycles
Posted: Thu Feb 23, 2017 3:39 am
please, Mr. Mladen could you look at this indicator for me when installed on chart shows as a straight line instead of cycle with dots it was working fine but seems to have corrupted itself thanks in advance.
Code: Select all
//+------------------------------------------------------------------+//| cyclekroufrextremums 2.0.mq4.mq4 |//| Copyright 2016, MetaQuotes Software Corp. |//| |//+------------------------------------------------------------------+#property copyright "Copyright 2016, MetaQuotes Software Corp."#property link ""#property version "1.00"#property strict#property indicator_chart_window//+------------------------------------------------------------------+//| Custom indicator initialization function |//+------------------------------------------------------------------+int OnInit() {//--- indicator buffers mapping //--- return(INIT_SUCCEEDED); }//+------------------------------------------------------------------+//| Custom indicator iteration function |//+------------------------------------------------------------------+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[]) {//--- //--- return value of prev_calculated for next call return(rates_total); }//+------------------------------------------------------------------+//| ChartEvent function |//+------------------------------------------------------------------+void OnChartEvent(const int id, const long &lparam, const double &dparam, const string &sparam) {//--- }//+------------------------------------------------------------------+