Hull Suite By Insilico
- Göstergeler
- Yashar Seyyedin
- Sürüm: 1.10
- Güncellendi: 11 Mart 2024
- Etkinleştirmeler: 5
To get access to MT4 version please click here.
- This is the exact conversion from TradingView: "Hull Suite" By "Insilico".
- This is a light-load processing and non-repaint indicator.
- You can message in private chat for further changes you need.
Here is the source code of a simple Expert Advisor operating based on signals from Hull Suite.
#include <Trade\Trade.mqh> CTrade trade; int handle_hull=0; input group "EA Setting" input int magic_number=123456; //magic number input double fixed_lot_size=0.01; // select fixed lot size enum MA_TYPE{HMA, THMA, EHMA}; input group "HULL setting" input MA_TYPE modeSwitch = HMA; //Hull Variation input ENUM_APPLIED_PRICE src =PRICE_CLOSE; //Source input int length = 55 ; //Length input int lengthMult = 1; //Multiplier input bool candleCol = false; int OnInit() { trade.SetExpertMagicNumber(magic_number); handle_hull=iCustom(_Symbol, PERIOD_CURRENT, "Market/Hull Suite By Insilico", modeSwitch, src, length, lengthMult, candleCol); if(handle_hull==INVALID_HANDLE) { Print("Indicator not found!"); return INIT_FAILED; } return(INIT_SUCCEEDED); } void OnDeinit(const int reason) { IndicatorRelease(handle_hull); } void OnTick() { if(!isNewBar()) return; /////////////////////////////////////////////////////////////////// bool buy_condition=true; buy_condition &= (BuyCount()==0); buy_condition &= (IsHULLBuy(1)); if(buy_condition) { CloseSell(); Buy(); } bool sell_condition=true; sell_condition &= (SellCount()==0); sell_condition &= (IsHULLSell(1)); if(sell_condition) { CloseBuy(); Sell(); } } bool IsHULLBuy(int i) { double array[]; ArraySetAsSeries(array, true); CopyBuffer(handle_hull, 0, i, 1, array); double val1=array[0]; CopyBuffer(handle_hull, 1, i, 1, array); double val2=array[0]; return val1>val2; } bool IsHULLSell(int i) { double array[]; ArraySetAsSeries(array, true); CopyBuffer(handle_hull, 0, i, 1, array); double val1=array[0]; CopyBuffer(handle_hull, 1, i, 1, array); double val2=array[0]; return val1<val2; } int BuyCount() { int buy=0; for(int i=0;i<PositionsTotal();i++) { ulong ticket=PositionGetTicket(i); if(ticket==0) continue; if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue; if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue; buy++; } return buy; } int SellCount() { int sell=0; for(int i=0;i<PositionsTotal();i++) { ulong ticket=PositionGetTicket(i); if(ticket==0) continue; if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue; if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue; sell++; } return sell; } void Buy() { double Ask=SymbolInfoDouble(_Symbol, SYMBOL_ASK); if(!trade.Buy(fixed_lot_size, _Symbol, Ask, 0, 0, "")) { Print("Error executing order: ", GetLastError()); //ExpertRemove(); } } void Sell() { double Bid=SymbolInfoDouble(_Symbol, SYMBOL_BID); if(!trade.Sell(fixed_lot_size, _Symbol, Bid, 0, 0, "")) { Print("Error executing order: ", GetLastError()); //ExpertRemove(); } } void CloseBuy() { for(int i=PositionsTotal()-1;i>=0;i--) { ulong ticket=PositionGetTicket(i); if(ticket==0) continue; if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue; if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue; if(trade.PositionClose(ticket)==false) { Print("Error closing position: ", GetLastError()); //ExpertRemove(); } } } void CloseSell() { for(int i=PositionsTotal()-1;i>=0;i--) { ulong ticket=PositionGetTicket(i); if(ticket==0) continue; if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue; if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue; if(trade.PositionClose(ticket)==false) { Print("Error closing position: ", GetLastError()); //ExpertRemove(); } } } datetime timer=NULL; bool isNewBar() { datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds(); if(timer==NULL) {} else if(timer==candle_start_time) return false; timer=candle_start_time; return true; }
Great!