TradingView
jiehonglim
6 de Jul de 2019 14:00

No Nonsense NNFX VP Strategy for Back Testing | jh 

Euro Fx/U.S. DollarFXCM

Descrição

My first script, be kind :)

Most of the rules are implemented:
- Money management
- ATR, Baseline, Confirmation, Volume, Exit

More details below.

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Designed per No Nonsense Forex VP rules
//Made to be as modular as possible, so we can swap the indicators in and out.
//Originated from causecelebre
//Tried to put in as much VP rules as possible

///////////////////////////////////////////////////
//Rules Implemented:
///////////////////////////////////////////////////
// - SL 1.5 x ATR
// - TP 1 x ATR
//
// - Entry conditions
//// - Entry within 1 candles of baseline + 1 x confirmation + volume
//// - Entry only if baseline is < 1 x ATR
// - Exit conditions
//// - Exit on exit indicator or when baseline or confirmation flip

///////////////////////////////////////////////////
//Trades entries
///////////////////////////////////////////////////
// - First entry L1 or S1 with standard SL and TP
// - Second entry L2 or S2 with standard SL and exit upon the exit conditions

///////////////////////////////////////////////////
//Included Indicators and settings
///////////////////////////////////////////////////
// - Baseline = HMA 20
// - Confirmtion = SSL 10
// - Volume = TDFI 4
// - Exit = RVI 4

///////////////////////////////////////////////////
//Credits
// Strategy causecelebre
// TDFI causecelebre
// SSL Channel ErwinBeckers
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

Notas de Lançamento

Re-adjusted the logic to handle the 1 candle rule.

Notas de Lançamento

Added 2nd confirmation, Absolute Strength MTR Indicator.

Included indicators are just possible examples.

Obviously more testing and patience needed to get the right combination of indicators and settings :)

Notas de Lançamento

Changed to 0.1 lots per trade, this 400 USD or 2% of equity is not working out for me.

strategy.entry to strategy.order. Apparently strategy.entry is going to double the trade size as it takes it the other way.

Trade signal based on confirmation 2 (ASH).

Notas de Lançamento

Updated to version 4.
Added a label at the end explaining the various shapes plotted.
Most important change, ATR is correctly assigned upon confirmation signal.

Notas de Lançamento

Uploaded the corrected script.
Comentários
sgthe3rd
GREAT WORK! How do you change emas and indicators or this just for what you coded?
Bambam13fox
Could some one tel me how to add this to my mt4. I keep getting about 25 errors and I don't know how to fix them. Thanks
TraderBenjamin
@Bambam13fox, shout out i started my career as a 13F Fort Drumm New York and retired 18D Torri Station Okinawa Japan. snap back to reality. The codes used here Pine (i believe i just woke up and TBR keep me hazey until a coffee) and you want to convert it to MT4 MT5
the_5786
Good work! thanks share
when price reach the long_tp or short_tp (for L1 or S1), stop loss point should move to enter price (for L2 or S2)
how it can be
jiehonglim
@the_5786, Ah, the part of moving SL to breakeven is something on my todo list :)
yunashanifah123
@jiehonglim, what the rule to move our stop loss to break even?
gee_ell
Good job! I found your contribution while searching for info on the strategy.order command, but my intention was also to implement my NNFX interpretation. Great minds think alike!
gee_ell
Hey also just a quick note... is your TDFI a repainter?
jiehonglim
@gee_ell, hi nope it’s now. I tried that on one minute charts.
gee_ell
@jiehonglim I started from the inspiration you gave me and thought about how we could modularize even more by using other indicators as inputs for the NNFX strategy. This way, one could very quickly test different functions for baseline, volume, etc. instead of copying and pasting indicator code every time and bloating code unnecessarily.

Turns out I had to get in touch with support... they told me you can't use indicators as inputs for a strategy, plain and simple. However, you can use ONE indicator as input for a study on the pro plan, and more with more expensive plans. That's not helpful.So let's keep working on that strategy!
Mais