Modification of RicardoSantos
RENKO V0
just added my buy / sell signals.
look inside script for extra signals conditions tested
Happy Trading!
Life is Art & Art is Life
RENKO V0
just added my buy / sell signals.
look inside script for extra signals conditions tested
Happy Trading!
Life is Art & Art is Life
//@version=2 strategy(title='[STRATEGY] EURUSD 5 RENKO [MakisMooz]', shorttitle='S_EURUSD_5_[MakisMooz]', overlay=true, pyramiding=0, initial_capital=100000, currency=currency.USD) trade_size = 10000 ro = open rc = close // #1 [MakisMooz] // Net Profit $1651.00 buy_entry = rc[0] > ro[0] sel_entry = rc[0] < ro[0] // #2 [MakisMooz] // Net Profit $793.00 //buy_entry = rc[0]>ro[0] // [MM] //sel_entry = rc[4] > ro[4] and rc[3] < ro[3] and rc[2] < ro[2] and rc[1] < ro[1] and rc < ro // #3 [RS] // Net Profit $435.50 //buy_entry = rc[4] < ro[4] and rc[3] > ro[3] and rc[2] > ro[2] and rc[1] > ro[1] and rc > ro //sel_entry = rc[4] > ro[4] and rc[3] < ro[3] and rc[2] < ro[2] and rc[1] < ro[1] and rc < ro strategy.entry('buy', long=strategy.long, qty=trade_size, comment='buy', when=buy_entry) strategy.entry('sell', long=strategy.short, qty=trade_size, comment='sell', when=sel_entry)
Net Profit
1. $1651.00
2. $793.00
3. $435.50