_Symble 通貨ペア
_Point 最小値
_Digit 小数点以下の桁数
_Period タイムフレーム(何分足)
※値は分で入っている 日足なら1440
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
void OnStart() { //--- Print("売値=",Bid," 買値=",Ask); Print("open[0]=",Open[0]," open[1]=",Open[1]); Print("High[0]=",High[0]," High[1]=",High[1]); Print("Low[0]=",Low[0]," Low[1]=",Low[1]); Print("Close[0]=",Close[0]," Close[1]=",Close[1]); Print("_Symble=",_Symbol,"_Period=",_Period); Print("_Point(最小値の幅)=",_Point," _Digits(小数点以下の桁数=",_Digits); Print("_=",_Symbol,"_Period=",_Period); } //+------------------------------------------------------------------+ |
実行結果
1 2 |
2020.09.29 07:40:50.835 test_scr USDJPY.pro,M5: _Point(最小値の幅)=0.001 _Digits(小数点以下の桁数=3 2020.09.29 07:40:50.835 test_scr USDJPY.pro,M5: _Symble=USDJPY.pro_Period=5 |