BinaryOption

ボリンジャーバンドとRSIを組み合わせたインジケータの勝率

ボリンジャーバンドとRSIを組み合わせたインジケータの勝率 ボリンジャーバンド 2.7シグマを超えた && RSI(14)が70と30(スレッショルドレベル)   GBPJPY M5(掛け金1万円) マーチンなし マーチンあり   USDJPY M5(掛け金1万円) マーチンなし   AUDJPY M5(掛け金1万円)ーーGood!! マーチンなし マーチンあり(1回)   NZDJPY M5(掛け金1万円) マーチンなし GBPUSD M5(掛け金1万円) マーチンなし

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…