تمام
قمت بتعريفه في الأعلى خارج الأون تيك و بقي نفس المشكل
كود:
#property copyright "Copyright 2016, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
#property indicator_chart_window
static string R;
double P = iRSI(Symbol(),5,14,PRICE_CLOSE,1);
//+------------------------------------------------------------------+
//| 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[])
{
//---
if(P>60)
{
R = "UP";
}
if(P<40)
{
R = "DOWN";
}
Comment(R);
//--- return value of prev_calculated for next call
return(rates_total);
}
كما ترى في الكود عرفته في الأعلى تمام
و لمايكون فوق 60 يعطيني up
و لما يكون تحت ال 40 يعطيني down
و لما يكون بينهما لا يزال لا يعطيني شيئ لا تزال المشكلة للأسف الشديد
.gif)