get paid to paste

RENKO Alert edit BY collectcoineasy

//@version=2
study(title='RENKO Alert edit BY collectcoineasy', shorttitle='RENKO Alert edit by Collectcoineasy', overlay=false)   
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]  

long = buy_entry
short = sel_entry     
// #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     
plot(long,"long", color=yellow, linewidth=1)
plot(short,"short", color=red, linewidth=1)

Pasted: Aug 19, 2016, 3:29:25 am
Views: 25