Nadaraya Watson Envelope LuxAlgo
- インディケータ
- Yashar Seyyedin
- バージョン: 1.10
- アップデート済み: 25 8月 2024
- アクティベーション: 5
To get access to MT4 version click here.
- This is the exact conversion from "Nadaraya-Watson Envelope" by "LuxAlgo". (with non-repaint input option)
- This is not a light-load processing indicator if repaint input is set to true.
- All input options are available.
- Buffers are available for processing in EAs.
- I changed default input setup to non-repaint mode for better performance required for mql market validation procedure.
Here is the source code of a simple Expert Advisor operating based on signals from this indicator.
#include <Trade\Trade.mqh> CTrade trade; int handle_nw=0; input group "EA Setting" input int magic_number=123456; //magic number input double fixed_lot_size=0.01; // select fixed lot size input bool multiplie_entry=false; //allow multiple entries in the same direction input group "nw setting" input double h = 8.;//Bandwidth input double mult = 3; // input ENUM_APPLIED_PRICE src = PRICE_CLOSE; //Source input bool repaint = false; //Repainting Smoothing int OnInit() { trade.SetExpertMagicNumber(magic_number); handle_nw=iCustom(_Symbol, PERIOD_CURRENT, "Market/Nadaraya Watson Envelope LuxAlgo", h, mult, src, repaint); if(handle_nw==INVALID_HANDLE) { Print("Indicator not found!"); return INIT_FAILED; } return(INIT_SUCCEEDED); } void OnDeinit(const int reason) { IndicatorRelease(handle_nw); } void OnTick() { if(!isNewBar()) return; /////////////////////////////////////////////////////////////////// bool buy_condition=true; if(!multiplie_entry) buy_condition &= (BuyCount()==0); buy_condition &= (IsNWBuy(1)); if(buy_condition) { CloseSell(); Buy(); } bool sell_condition=true; if(!multiplie_entry) sell_condition &= (SellCount()==0); sell_condition &= (IsNWSell(1)); if(sell_condition) { CloseBuy(); Sell(); } } bool IsNWBuy(int i) { double array[]; ArraySetAsSeries(array, true); CopyBuffer(handle_nw, 5, i, 1, array); return array[0]!=EMPTY_VALUE; } bool IsNWSell(int i) { double array[]; ArraySetAsSeries(array, true); CopyBuffer(handle_nw, 6, i, 1, array); return array[0]!=EMPTY_VALUE; } 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; }