0

私は次のことを試しました:

adx_output = iADX(_Symbol,TimePeriod,Candles_for_adx);
Print(ChartGetDouble(0,CHART_PRICE_MAX,2));
Print(ChartGetDouble(0,CHART_PRICE_MIN,2));
Print(ChartGetDouble(0,CHART_POINTS_PER_BAR,2));

しかし、上記のコードは、現在またはティックベースの時系列の中間値を示しています。前のろうそくの範囲にアクセスしたい。しかし、役立つものは見つかりませんでした。
この問題の提案を教えてください。

4

1 に答える 1

1

正しい値をチェックしていない

まあ、
MetaTrader の GUI グラフの属性を使用すること{ CHART_PRICE_MIN, CHART_PRICE_MAX }は可能ですが、グラフのレイアウトは aPriceDOMAIN イベント ( QUOTE-s ) といくつかの構成可能なオプションによって制御されますが、ADX テクニカル インジケーターの値自体では制御されません。状態は、実際に求められる{ min, MAX }-ADX 値とはほとんど関係ありません。

アプローチ:

  • スマートだが複雑なアプローチは、CustomIndicator またはクラスを作成して、この正確なサービスを実行することです。

  • 素朴だが機能的なアプローチは、目的の値を確認して再確認することiADX()-{ MAIN, +DI, -DI }です。


/* -----------------------------------------------//
int  iADX(                                        // MQL5-call-inteface:
           string           symbol,               //      symbol name
           ENUM_TIMEFRAMES  period,               //      period
           int              adx_period            //      averaging period
           );
*/

#define currentChartID         0
#define currentChartMainWINDOW 0

int    nBARsVISIBLE = ChartGetInteger( currentChartID, CHART_VISIBLE_BARS,
                                       currentChartMainWINDOW
                                       ); 
double iADX_VISIBLE[nBARsVISIBLE];
double iADX_VISIBLE_min,
       iADX_VISIBLE_MAX;
int    iADX_IndicatorHANDLE = iADX( _Symbol,
                                     TimePeriod,
                                     Candles_for_adx
                                     );
/* -----------------------------------------------//
int  CopyBuffer(                                  // MQL5-call-inteface:
                  int       indicator_handle,     // indicator handle
                  int       buffer_num,           // indicator buffer number
                  int       start_pos,            // start position
                  int       count,                // amount to copy
                  double    buffer[]              // target array to copy
                  );
*/
int RetCODE = CopyBuffer( iADX_IndicatorHANDLE,
                          MODE_MAIN,              // { 0: MODE_MAIN | 1: MODE_PLUSDI | 2: MODE_MINUSDI }
                          0,
                          nBARsVISIBLE,
                          iADX_VISIBLE
                          );
 if ( RetCODE == -1 ) {...}
 else {
       iADX_VISIBLE_min = iADX_VISIBLE[ ArrayMinimum( iADX_VISIBLE ) ];
       iADX_VISIBLE_MAX = iADX_VISIBLE[ ArrayMaximum( iADX_VISIBLE ) ];
       ...
 }

最後のコメントを考えると:

これが私の質問に対する答えかもしれませんが、ADX の最小最大ではなく、グラフの制限が必要です。後で計算できますが、現在はグラフの制限が必要です。ADXグラフでいくつかの実験を試みています。–ジャファー・ウィルソン 1時間前

   #define currentChartID          0       // adapt to fit your current setup
   #define currentChartSubWinID    0       // adapt to fit your current setup

   double priceMin = ChartGetDouble( currentChartID,
                                     CHART_PRICE_MIN,
                                     currentChartSubWinID
                                     );
   double priceMax = ChartGetDouble( currentChartID,
                                     CHART_PRICE_MAX,
                                     currentChartSubWinID
                                     );
   Print( "INF:: Chart(", currentChartID, ":", currentChartSubWinID, ").CHART_PRICE_MAX = ", priceMin );
   Print( "INF:: Chart(", currentChartID, ":", currentChartSubWinID, ").CHART_PRICE_MAX = ", priceMax );
于 2018-04-02T12:28:19.027 に答える