Others

Others

Binary Option Indicator #2

I made a Binary Option Indicator バイナリーオプションインジケーター作りました(その2です) You can not see the Win rate real time on the chart. 勝率率はインジケーターのバックテスト中に表示されます。 Instead, you can check Win rate during backtest. (sell below) <<How to check Win rate>> Please select Indicator and run it. You can change sensitivity parameter. 感度を調整できます。 If smaller, less entry signal but more accurate. 値を小さくするとエントリー回数は少なくなります。 This…

Others

How to send EA order notification to LINE

If you want to notify EA open order / close order signal to LINE, you can use the following code. input string Token =”YOUR LINE TOKEN”; void message(string Message){ string headers;char data[], result[]; headers=”Authorization: Bearer “+Token+”\r\n application/x-www-form-urlencoded\r\n”; ArrayResize(data,StringToCharArray(“message=”+Message,data,0,WHOLE_ARRAY,CP_UTF8)-1); int res = WebRequest(“POST”, “https://notify-api.line.me/api/notify”, headers, 0, data, data, headers); if(res==-1) { Print(“Error in WebRequest. Error code…