途中から入るナンピンマーチンゴールドのツールががブレインで販売されているとタイムラインで読んで、これはまた養分嵌め込み案件だと思い注意喚起でこの記事を書こうと思いました。
ナンピンマーチンの途中から入れば期待値が上がる
のは幻想だと思ってます。まだこの記事を執筆してる初期の段階なので検証はこれからですが、検証するまでもないと思います。
ナンピンマーチンなんて運ゲーです。運の要素以外ないです。
先週エクスネスのコピトレのPKとオカダさんが飛びました・・・。
エクスネスのコピトレは終わりだー😭😭😭
GOLD TRADING PKは名前とアイコンを変えて逃亡中!!
エクスネスのコピトレの日本勢トップのオカダさんも飛びました。
コピトレなのでフォロワーも道連れです。
Table of Contents
○○段から入れば期待値が上がると思っているのは、パチンコの1000ハマりは熱い!!と言ってるのと同じじゃね?
パチンコ台の1000回転ハマりも、パチンコ台を0回転から回すのも期待値は一緒です。
ハマっていればその分出る!!と思っているなら、パチンコのオカルトと同じです。
ナンピンマーチンを1段目から始めるのもナンピンマーチン5段から始めるのも期待値一緒のはずです。
何段積んだとしても結局、ナンピンマーチンなんて期待値は執行コストがあるのでマイナスだと思います。
ちょっと前にナンピンマーチンゴールドEAを作ったのでこれを改変して検証してみましょう。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
//+------------------------------------------------------------------+ //| ProjectName | //| Copyright 2018, CompanyName | //| http://www.companyname.net | //+------------------------------------------------------------------+ #property strict enum giji_or_syoki { GIJI_LOT,//疑似ロット SYOKI_LOT//初期ロット }; enum hukumeru_or_hukumenai { HUKUMERU,//疑似ロット含める HUKUMENAI//疑似ロット含めない }; input int MagicNumber = 7771777;//マジックナンバー input int nanpin_haba = 200;//ナンピン幅 input int rikaku_haba = 200;//利確幅 input int dokokara_hairu = 1;//ナンピンのどこから入る? input giji_or_syoki input_syokai_lot = GIJI_LOT;//初回エントリーロット数はどっち?「疑似ロット数or初期ロット数」 input hukumeru_or_hukumenai input_heikinsyutokutanka_houhou = HUKUMERU;//疑似ロットなら、平均取得単価の計算に疑似ロットを含める? bool buy_entry_on,sell_entry_on; int buy_position_num = 0; int sell_position_num = 0; double buy_entry_trigger_price = 0; double sell_entry_trigger_price = 0; double lot_table[14] = {0.01,0.02,0.04,0.08,0.16,0.32,0.64,1.28,2.56,5.12,10.24,20.48,40.96,81.92}; double position_prices[14] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0}; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void OnTick() { int i = 0; //エントリ-シグナルがでたらエントリー待機モードへ移行 if(is_buy() && is_up_trend() && posi_count(OP_BUY) == 0 && posi_count(OP_SELL) == 0) { buy_entry_on = true; buy_entry_trigger_price = iClose(NULL,0,0); for(i = 0; i<14; i++) { if(i==0) { position_prices[i]=buy_entry_trigger_price; } else if(i != 0) { position_prices[i]=buy_entry_trigger_price - nanpin_haba * (1 + i) * _Point; } } } if(is_sell() && is_down_trend() && posi_count(OP_BUY) == 0 && posi_count(OP_SELL) == 0) { sell_entry_on = true; sell_entry_trigger_price = iClose(NULL,0,0); for(i = 0; i<14; i++) { if(i==0) { position_prices[i]=sell_entry_trigger_price; } else if(i != 0) { position_prices[i]=sell_entry_trigger_price + nanpin_haba * (1 + i) * _Point; } } } //エントリー待機モード if(buy_entry_on && posi_count(OP_BUY) == 0 && posi_count(OP_SELL) == 0) { double cl = iClose(NULL,0,0); if(buy_entry_trigger_price - nanpin_haba * _Point > cl) { buy_position_num = 1; } if(buy_entry_trigger_price - nanpin_haba * 2 * _Point> cl) { buy_position_num = 2; } if(buy_entry_trigger_price - nanpin_haba * 3 * _Point> cl) { buy_position_num = 3; } if(buy_entry_trigger_price - nanpin_haba * 4 * _Point> cl) { buy_position_num = 4; } if(buy_entry_trigger_price - nanpin_haba * 5 * _Point> cl) { buy_position_num = 5; } if(buy_entry_trigger_price - nanpin_haba * 6 * _Point> cl) { buy_position_num = 6; } if(buy_entry_trigger_price - nanpin_haba * 7 * _Point> cl) { buy_position_num = 7; } if(buy_entry_trigger_price - nanpin_haba * 8 * _Point> cl) { buy_position_num = 8; } if(buy_entry_trigger_price - nanpin_haba * 9 * _Point> cl) { buy_position_num = 9; } if(buy_entry_trigger_price - nanpin_haba * 10 * _Point> cl) { buy_position_num = 10; } if(buy_entry_trigger_price - nanpin_haba * 11 * _Point> cl) { buy_position_num = 11; } if(buy_entry_trigger_price - nanpin_haba * 12 * _Point> cl) { buy_position_num = 12; } if(buy_entry_trigger_price - nanpin_haba * 13 * _Point> cl) { buy_position_num = 13; } if(position_average_price_giji(0) + rikaku_haba * _Point < Bid) { buy_entry_on = false; } if(dokokara_hairu -1 <= buy_position_num) { position_entry(OP_BUY); } } if(sell_entry_on && posi_count(OP_BUY) == 0 && posi_count(OP_SELL) == 0) { double cl = iClose(NULL,0,0); if(sell_entry_trigger_price + nanpin_haba * _Point< cl) { sell_position_num = 1; } if(sell_entry_trigger_price + nanpin_haba * 2 * _Point< cl) { sell_position_num = 2; } if(sell_entry_trigger_price + nanpin_haba * 3 * _Point< cl) { sell_position_num = 3; } if(sell_entry_trigger_price + nanpin_haba * 4 * _Point< cl) { sell_position_num = 4; } if(sell_entry_trigger_price + nanpin_haba * 5 * _Point< cl) { sell_position_num = 5; } if(sell_entry_trigger_price + nanpin_haba * 6 * _Point< cl) { sell_position_num = 6; } if(sell_entry_trigger_price + nanpin_haba * 7 * _Point< cl) { sell_position_num = 7; } if(sell_entry_trigger_price + nanpin_haba * 8 * _Point< cl) { sell_position_num = 8; } if(sell_entry_trigger_price + nanpin_haba * 9 * _Point< cl) { sell_position_num = 9; } if(sell_entry_trigger_price + nanpin_haba * 10 * _Point< cl) { sell_position_num = 10; } if(sell_entry_trigger_price + nanpin_haba * 11 * _Point< cl) { sell_position_num = 11; } if(sell_entry_trigger_price + nanpin_haba * 12 * _Point< cl) { sell_position_num = 12; } if(sell_entry_trigger_price + nanpin_haba * 13 * _Point< cl) { sell_position_num = 13; } if(position_average_price_giji(1) - rikaku_haba * _Point > Ask) { sell_entry_on=false; } if(dokokara_hairu -1 <= sell_position_num) { position_entry(OP_SELL); } } //疑似ポジション数を0にする条件 if(posi_count(OP_BUY) != 0) { buy_entry_on = false; } if(posi_count(OP_SELL) != 0) { sell_entry_on = false; } if(posi_count(OP_BUY) == 0 && buy_entry_on == false) { buy_position_num = 0; } if(posi_count(OP_SELL) == 0 && sell_entry_on == false) { sell_position_num = 0; } //決済処理 if(posi_count(OP_BUY) > 0) { if(position_average_price(0) + rikaku_haba * _Point < Bid) { position_close(0); } } if(posi_count(OP_SELL) > 0) { if(position_average_price(1) - rikaku_haba * _Point > Ask) { position_close(1); } } //ナンピンマーチン nanpin_martin_judge(); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ bool is_buy() { double rsi = iRSI(NULL,0,14,0,1); if(rsi < 30) { return true; } return false; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ bool is_sell() { double rsi = iRSI(NULL,0,14,0,1); if(rsi > 70) { return true; } return false; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ bool is_up_trend() { return true; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ bool is_down_trend() { return true; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int posi_count(int side) { int count = 0; for(int i = OrdersTotal() - 1; i >= 0; i--) { if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { if(OrderType() == side) { if(OrderSymbol()==Symbol()) { if(OrderMagicNumber()==MagicNumber) { count++; } } } } } return count; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void position_entry(int side) { double qty = 0.01; if(input_syokai_lot == GIJI_LOT) { if(side==0) { qty = lot_table[buy_position_num]; } if(side==1) { qty = lot_table[sell_position_num]; } } if(input_syokai_lot == SYOKI_LOT) { if(side==0) { qty = lot_table[0]; } if(side==1) { qty = lot_table[0]; } } if(side==0) { bool res= OrderSend(NULL,side,qty,Ask,0,0,0,NULL,MagicNumber,0,clrGreen); } if(side==1) { bool res= OrderSend(NULL,side,qty,Bid,0,0,0,NULL,MagicNumber,0,clrRed); } } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void position_entry_nanpin(int side,int position_count) { double qty = 0.01; if(buy_position_num + position_count < 15 && sell_position_num + position_count < 15) { if(input_syokai_lot == GIJI_LOT) { if(side==0) { qty = lot_table[buy_position_num + position_count]; } if(side==1) { qty = lot_table[sell_position_num + position_count]; } } if(input_syokai_lot == SYOKI_LOT) { if(side==0) { qty = lot_table[position_count]; } if(side==1) { qty = lot_table[position_count]; } } } else { qty = 99; } if(side==0) { bool res= OrderSend(NULL,side,qty,Ask,0,0,0,NULL,MagicNumber,0,clrGreen); } if(side==1) { bool res= OrderSend(NULL,side,qty,Bid,0,0,0,NULL,MagicNumber,0,clrRed); } } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void position_close(int side) { for(int i = OrdersTotal() - 1; i >= 0; i--) { if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { if(OrderType() == side) { if(OrderSymbol()==Symbol()) { if(OrderMagicNumber()==MagicNumber) { bool res= OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 0, clrBlue); } } } } } } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ double position_average_price(int side) { double lots_sum = 0; double price_sum = 0; double average_price = 0; int num = side == 0? buy_position_num:sell_position_num; if(input_heikinsyutokutanka_houhou == HUKUMERU) { for(int j=0; j < num; j++) { lots_sum += lot_table[j]; price_sum += position_prices[j] * lot_table[j]; } } for(int i = OrdersTotal() - 1; i >= 0; i--) { if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { if(OrderType() == side) { if(OrderSymbol()==Symbol()) { if(OrderMagicNumber()==MagicNumber) { lots_sum += OrderLots(); price_sum += OrderOpenPrice() * OrderLots(); } } } } } if(lots_sum && price_sum) { average_price = price_sum/lots_sum; } return average_price; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ double position_average_price_giji(int side) { double lots_sum = 0; double price_sum = 0; double average_price = 0; int num = side == 0? buy_position_num:sell_position_num; for(int j=0; j < num; j++) { lots_sum += lot_table[j]; price_sum += position_prices[j] * lot_table[j]; } if(lots_sum && price_sum) { average_price = price_sum/lots_sum; } return average_price; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void nanpin_martin_judge() { if(posi_count(OP_BUY) + buy_position_num > 14 || posi_count(OP_BUY) + buy_position_num > 14){return;} if(posi_count(OP_BUY) > 0) { int position_num = posi_count(OP_BUY); double nanpin_price = position_prices[position_num + buy_position_num]; if(nanpin_price > Ask) { position_entry_nanpin(OP_BUY,posi_count(0)); } } if(posi_count(OP_SELL) > 0) { int position_num = posi_count(OP_SELL); double nanpin_price = position_prices[position_num + sell_position_num]; if(nanpin_price < Bid) { position_entry_nanpin(OP_SELL,posi_count(1)); } } } //+------------------------------------------------------------------+ |
思ったよりも手こずりました。
検証は自分の手でやってみよう😆!!
あとは
この表示がでる。
これで完成です。
バックテスト
クライマックス13段
実際に稼働させる
これでおわりです。
管理人からのお願い
このブログはアフィリエイトで運営費を捻出しています。
なのでアフィリエイト収入がないとそのうちブログが消滅します。
2023年、今年も売り上げがやばい!!まだまだ赤字運営です!!
たぶんもう持ってると思うけど、Exnessの口座を持ってない方がいましたらこのリンクから申し込みをしてください。
以下のリンクからAmazonで何かしらを購入してもらえると管理人にアフィリエイト収入が入ります。
稼いだ方はお祝いどうぞ
マーチンゲール
外国為替
管理人おすすめの漫画コーナー
おすすめのコーヒー
BybitがGoogleのIPアドレス規制をしているためです。国内のVPSなら使…
自分のbotで使ってるAPIキーを使用しているんですが、 You have br…
pybit 最新版にコードを変更しました。コードとrequirements.tx…
お返事ありがとうございます。はい。pybit==2.3.0になっております。
コードはあっていると思います。rewuirements.txtは「pybit==…