仕事が完了した
実行時間16 時間
依頼者からのフィードバック
Programmer motion helpful and professional. Recommended!!
指定
Hi, I need to correct this code. When the MA3 crosses the RSI2 from the bottom up, it must appear to the arrow. I wrote this code but it does not work. Thanks, Max.
#property indicator_chart_window #property indicator_buffers 1 #property indicator_type1 DRAW_ARROW #property indicator_width1 1 #property indicator_color1 clrGreen #property indicator_label1 "Buy" input int Period_RSI=2; input int Period_MA=3; //--- indicator buffers double Buffer1[]; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int OnInit() { IndicatorBuffers(2); SetIndexBuffer(0, Buffer1); SetIndexEmptyValue(0, 0); SetIndexArrow(0, 241); return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ 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[]) { double RSI[]; double MA[]; RSI[0]= iRSI(NULL,PERIOD_CURRENT,Period_RSI,PRICE_CLOSE,0); MA[0]= iMA(NULL,PERIOD_CURRENT,Period_MA,0,MODE_SMA,PRICE_CLOSE,0); int limit = rates_total - prev_calculated; //--- counting from 0 to rates_total ArraySetAsSeries(Buffer1, true); //--- initial zero if(prev_calculated < 1) { ArrayInitialize(Buffer1, 0); } else limit++; //--- main loop for(int i = limit-1; i >= 0; i--) { if (i >= MathMin(300-1, rates_total-1-50)) continue; //Indicator Buffer 1 if (iMAOnArray(RSI,0,Period_MA,0,0,1)< iRSIOnArray(MA,0,Period_RSI,0)//Cross MA-RSI && iMAOnArray(RSI,0,Period_MA,0,0,0)>iRSIOnArray(MA,0,Period_RSI,0) ) { Buffer1[i] = Low[i] - 10 *Point(); } else { Buffer1[i] = 0; } } return(rates_total); }
応答済み
1
評価
プロジェクト
1410
67%
仲裁
123
32%
/
41%
期限切れ
218
15%
暇
パブリッシュした人: 1 code
2
評価
プロジェクト
789
71%
仲裁
9
33%
/
33%
期限切れ
22
3%
暇
パブリッシュした人: 8 codes
3
評価
プロジェクト
412
61%
仲裁
13
38%
/
23%
期限切れ
163
40%
暇
パブリッシュした人: 45 articles, 1 code
4
評価
プロジェクト
1462
63%
仲裁
21
57%
/
10%
期限切れ
43
3%
暇
5
評価
プロジェクト
2912
63%
仲裁
122
44%
/
25%
期限切れ
429
15%
仕事中
6
評価
プロジェクト
1810
61%
仲裁
14
64%
/
7%
期限切れ
84
5%
暇
プロジェクト情報
予算
10 - 15 USD
締め切り
最低 1 最高 3 日