無料グリッド・マーチンゲールEA「Grid Free2」をバージョンアップしてみた
前回はGrid Freeを書き直して、スプレッドフィルターを追加したGrid Free2を作成しました。
今回はさらにバージョンアップしてGrid Free3を作成しました。
Grid Free2では2017年から2023年までのバックテストをすると、NZDCADの通貨ペアで破綻していました。↓
今回のGrid Free3ではNZDCADの通貨ペアで完走できました。↓
バージョンアップしたポイント
①RSIのエントリー条件を1つ追加して、少しエントリーポイントを厳選
②パラメーターの設定項目を増やして、トレードロジックを変えられる
①RSIのエントリー条件を1つ追加
Grid Free2では、1本前のローソク足のRSIが30より下、70より上でエントリーという条件になっていました。↓
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;
}
Grid Free3では、1本前のローソク足で30以下、70以上
+現在のローソク足でRSIが30より上、70より下に抜けてからエントリーという条件にしました。↓
bool is_buy()
{
double rsi = iRSI(NULL,0,14,0,1);
double rsi2 = iRSI(NULL,0,14,0,0);
if(rsi <= 30 && rsi2 > 30)
{
return true;
}
return false;
}
bool is_sell()
{
double rsi = iRSI(NULL,0,14,0,1);
double rsi2 = iRSI(NULL,0,14,0,0);
if(rsi >= 70 && rsi2 < 70)
{
return true;
}
return false;
}
②パラメーターの設定項目を追加
パラメーターで色々数値を変えてみたいところを変えられるように、設定項目を増やしてみました。
追加した項目
・利確幅
・ナンピン幅
・ロット倍率
・RSI計算期間
・RSI下ライン(買い)
・RSI上ライン(売り)
・モメンタムフィルター1
・モメンタムフィルター2
これで主なロジックを色々変えられるので、うまく最適化すればバックテストの成績がよくなると思います。
Grid Free3のソースコード
Grid Free3のソースコードとファイルはこちら
↓
#property strict
input int MagicNumber = 777999;//マジックナンバー
input double lots = 0.1;//ロット数
input int MaxSp = 45;//最大スプレッド
input int rikakuhaba = 150;//利確幅
input int nanpinhaba =300;//ナンピン幅
input double lotbai = 1.5;//ロット倍率
input int rsikikan =14;//RSI計算期間
input int rsilow =30;//RSI下ライン(買い)
input int rsihigh =70;//RSI上ライン(売り)
input int shift1 =100;//モメンタムフィルター1
input int shift2 =200;//モメンタムフィルター2
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void OnTick()
{
//エントリー処理
if(MarketInfo(Symbol(),MODE_SPREAD) < MaxSp)
{
if(is_buy() && is_up_trend() && posi_count(OP_BUY) == 0 && posi_count(OP_SELL) == 0)
{
position_entry(OP_BUY);
}
if(is_sell() && is_down_trend() && posi_count(OP_BUY) == 0 && posi_count(OP_SELL) == 0)
{
position_entry(OP_SELL);
}
}
//決済処理
if(posi_count(OP_BUY) > 0)
{
if(position_average_price(0) + rikakuhaba * _Point < Bid)
{
position_close(0);
}
}
if(posi_count(OP_SELL) > 0)
{
if(position_average_price(1) - rikakuhaba * _Point > Ask)
{
position_close(1);
}
}
//ナンピンマーチン
nanpin_martin_judge();
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool is_buy()
{
double rsi = iRSI(NULL,0,rsikikan,0,1);
double rsi2 = iRSI(NULL,0,rsikikan,0,0);
if(rsi <= rsilow && rsi2 > rsilow)
{
return true;
}
return false;
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool is_sell()
{
double rsi = iRSI(NULL,0,rsikikan,0,1);
double rsi2 = iRSI(NULL,0,rsikikan,0,0);
if(rsi >= rsihigh && rsi2 < rsihigh)
{
return true;
}
return false;
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool is_up_trend()
{
double close = iClose(NULL,0,0);
double close100 = iClose(NULL,0,shift1);
double close200 = iClose(NULL,0,shift2);
double mom100 = close - close100;
double mom200 = close - close200;
//「momが0超え」なら上昇トレンド
if(0 < mom100 && 0 < mom200)
{
return true;
}
return false;
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool is_down_trend()
{
double close = iClose(NULL,0,0);
double close100 = iClose(NULL,0,shift1);
double close200 = iClose(NULL,0,shift2);
double mom100 = close - close100;
double mom200 = close - close200;
//「momが0未満」なら下降トレンド
if(0 > mom100 && 0 > mom200)
{
return true;
}
return false;
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
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 = lots;
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,double bairitu)
{
double qty = lots;
if(side==0)
{
bool res= OrderSend(NULL,side,qty * bairitu,Ask,0,0,0,NULL,MagicNumber,0,clrGreen);
}
if(side==1)
{
bool res= OrderSend(NULL,side,qty * bairitu,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;
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_entry_price(int side)
{
double entry_prices[50];
double entry_price=0;
ArrayInitialize(entry_prices,0.0);
if(side ==1)
{
ArrayInitialize(entry_prices,9999999.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)
{
entry_prices[i] = OrderOpenPrice();
}
}
}
}
}
if(side==0)
{
entry_price = entry_prices[ArrayMaximum(entry_prices,WHOLE_ARRAY,0)];
}
if(side==1)
{
entry_price = entry_prices[ArrayMinimum(entry_prices,WHOLE_ARRAY,0)];
}
return entry_price;
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void nanpin_martin_judge()
{
if(posi_count(OP_BUY) > 0)
{
int position_num = posi_count(OP_BUY);
double entry_price = position_entry_price(OP_BUY);
double nanpin_price = entry_price - (nanpinhaba * _Point) * position_num;
double lots_bairitu = MathPow(lotbai,position_num);
if(nanpin_price > Ask)
{
position_entry_nanpin(OP_BUY,lots_bairitu);
}
}
if(posi_count(OP_SELL) > 0)
{
int position_num = posi_count(OP_SELL);
double entry_price = position_entry_price(OP_SELL);
double nanpin_price = entry_price + (nanpinhaba * _Point) * position_num;
double lots_bairitu = MathPow(lotbai,position_num);
if(nanpin_price < Bid)
{
position_entry_nanpin(OP_SELL,lots_bairitu);
}
}
}
//+------------------------------------------------------------------+
Grid Free2とGrid Free3のバックテストの比較
NZDCADのバックテスト結果はこの記事の最初の方にのせたので、AUDCADとAUDNZDのバックテスト結果もここにのせておきます。
Grid Free2でAUDCAD↓
Grid Free3でAUDCAD↓
Grid Free2でAUDNZD↓
Grid Free3でAUDNZD↓
AUDNZDのバックテスト結果を見てみると、結構危ない場面が多いので、次回はAUDNZDでパラメーターを最適化してみたいと思います。
いい設定を見つけたらぜひ教えてください。
もしよかったら、どうか記事の下の「記事をサポート」をお願い致します。お金が稼げなくて困っています。奨学金の返済、生活費、病院代、勉強代などに使いたいと思っております。