SuperTrend Nrp New Mtf EA
This EA is based on the supertrend indicator signal.
The indicator line is divided into two colors, orange for short and green for long.
Parameter setting:
External double LotSize = 0.01; / / number of hands
External int magic = 20201114; / / magic, which mainly distinguishes the order difference from other EA, and generally does not need to be concerned
External int SL = 300; / / stop loss
External int TP = 500; / / stop profit
External int period = 10; / / indicator period
extern ENUM_ APPLIED_ PRICE appliedPrice = PRICE_ Close; / / application price
External double multiplier = 3.0; / / number of conversions
extern ENUM_ Timeframes timeframe = 0; / / time period
Supertrend index is the first artificial intelligence indicator in the whole network --- signal light trading strategy.
It imitates the uncertain concept judgment and reasoning thinking mode of human brain. For the description system with unknown or uncertain model, as well as the control object with strong nonlinearity and large delay, fuzzy sets and fuzzy rules are applied to reasoning to express transitional boundary or qualitative knowledge and experience, to simulate human brain mode, to implement fuzzy comprehensive judgment, and to solve the rules difficult to deal with by conventional methods The problem of fuzzy information is discussed. Fuzzy logic is good at expressing qualitative knowledge and experience with unclear boundaries. It distinguishes fuzzy sets, deals with fuzzy relations, simulates human brain to implement rule-based reasoning, and solves various uncertain problems caused by the logic breaking of "exclusive middle law".
Supertrend is a very good trading system, its main principle is to use ATR channel breakthrough strategy (similar to Kent channel).
The mean of true volatility (ATR) is an indispensable tool for an excellent trading system designer. It can be called a real horse in technical indicators. Every system trader should be familiar with ATR and its many useful functions. Its many applications include: parameter setting, market entry, stop loss, profit, etc., and even a very valuable auxiliary tool in fund management. But the main change lies in the use of bandit brin's narrowing strategy, or the reverse tonkian principle. In the operation of the market continues to narrow up and down the channel. In order to achieve the channel breakthrough steering operation.
There is also a JS version on GitHub. the address is https://github.com/Dodo33/gekko-supertrend-strategy/blob/master/Supertrend.js
The original version of supertrend was published on May 29, 2013 by rajandran R, and the C + + code was published in MT4 forum.