AscTrend
The beginning
- ASCTrend system, the beginning, part #1
- ASCTrend system, the beginning, part #2
- ASCTrend system, the beginning, part #3
- ASCTrend system, the beginning, part #4
- Digital ASCTrend (Digital Filters with ASCTrend system combined).
- LabTrend (LabTrend indicators, LabTrendZigZag, templates, Labtrend EAs) - the thread
After
- The main AscTrend thread is this one.
- Asctrend indicator in depth
- ASCTREND SYSTEM summary (good EAs included)
- Brainwashing system/AscTrend system (MT5) - the thread
============
Forum on trading, automated trading systems and testing trading strategies
BRAINWASHING SYSTEM/ASCTREND SYSTEM
Sergey Golubev, 2013.05.12 16:25
This is the thread about Brainwashing system. We will start with original version of this system and will improve it later.
==========
Just something about the history. There are 3 famous signals system (manual trading systems based on signal indicators): Asctrend, BrainTrend and Brainwashing. First two system were already explained and developed by indicators and EAs. So, we are going to discuss the last signal system: Brainwashing.
==========
Just for information:
ASCTREND SYSTEM
Asctrend System, the beginning:
ASCTrend system, the beginning, part #1
ASCTrend system, the beginning, part #2
ASCTrend system, the beginning, part #3
ASCTrend system, the beginning, part #4
Digital ASCTrend (Digital Filters with ASCTrend system combined).
The Theory.
- asctrend system vs braintrading system: pros and cons
- Asctrend indicator in MT5 Codebase
- trading on open bar' and 'trading on close bar' concept
- Re-enter: practical example about how to trade asctrend manually with re-enter options.
- basic trading rules for asctrend system
- detailed rules for asctrend: practical illustration of asctrend concept
- Nick Rypock Trailing Reverse indicator as a standard filter for asctrend: the theory.
Manual Trading statements
- first metatrader statement for this system using just one asctrend indicator only.
- Next MT5 statement with this system (manual trading).
- Trading's continuing - one more MT5 statement.
- Next updating MT5 statement.
Second version of this manual trading system and for now - asctrend indicator together with NRTR indicator
First version of AsctrendND EA.
- optimization results for M15 timeframe for EURUSD, GBPUSD, USDCHF and USDJPY;
- backtesting results and settings for EURUSD M15 timeframe;
- optimization results for this EA for EURUSD H4 using Balance + max Sharpe ration;
- backtesting results with the settings 'Balance + Sharpe ratio', EURUSD H4;
- optimization results of this EA with EURUSD M15 timeframe;
- backtesting and the settings for EURUSD M15 with max Sharpe ratio;
- this is the other settings which may be some preliminary settings for martingale version;
- the other optimization results for GBPUSD M15
Next version of AsctrendND EA (verion 1.02) with TrendStrength filter added.
- optimization results for EURUSD M15 (for 1 year), every tick, slow complete ..., for Balance max;
- results for backtesting and the settings for EURUSD M15 timeframe, for one year with 2 indicators as the filters: NRTR Color Line and TrendStrength;
- optimization results for GBPUSD M15 for 1 year - the results and set file are attached;
- backtesting results and the settings for GBPUSD M15;
- optimization results for one year for EURUSD H1 timeframe with Balance + max Sharpe ratio;
- backtesting results with the settings for this EURUSD H1 with Balance + max Sharpe;
BRAINTRADING SYSTEM
- BrainTrending indicators to download with template.
- Rules to trade manually
- How to install
- TSD DS jurik BrainTrading system - the key thread
- TSD BrainTrading Stochastics system - the post
- BrainTrading Semi-Manual EA for M30 timeframe system - the thread
- The differences between Brainwashing and BrainTrading system - the post.
How To Create Your Own Manual Trading Signal System Based On Indicators From MT5 CodeBase - Instruction For Non-Programmers
- more to follow
for(count=bar; count<=bar+9; count++) AvgRange=AvgRange+MathAbs(high[count]-low[count]);Here is my solution as git diff:
diff --git a/indicator/trend/asctrend.mq5 b/indicator/trend/asctrend.mq5 index 1f619c8..c037d5c 100644 --- a/indicator/trend/asctrend.mq5 +++ b/indicator/trend/asctrend.mq5 @@ -123,7 +123,7 @@ int OnCalculate(const int rates_total, if(BarsCalculated(WPR_Handle[0])<rates_total || BarsCalculated(WPR_Handle[1])<rates_total || BarsCalculated(WPR_Handle[2])<rates_total - || rates_total<StartBars) + || rates_total<(StartBars+10))^M return(RESET); //---- declarations of local variables @@ -134,7 +134,7 @@ int OnCalculate(const int rates_total, //---- calculations of the necessary amount of data to be copied and //the limit starting index for loop of bars recalculation if(prev_calculated>rates_total || prev_calculated<=0)// checking for the first start of the indicator calculation - limit=rates_total-StartBars; // starting index for calculation of all bars + limit=rates_total-StartBars - 10; // starting index for calculation of all bars^M else limit=rates_total-prev_calculated; // starting index for calculation of new bars //---- indexing elements in arrays as timeseriesNote: For some unknown reason the above error do NOT show up every time in "Journal" tab.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
ASCtrend:
Author: Nikolay Kositsin