8928 views
Since my exchange doesn't support trailing stop I made a script for it.
It is fully configurable, which means you can set the bars for calculation, the offset and sources for trigger and calculation.
The original purpose for me was to send a command to my bot. If you like it please comment and check out my other scripts.
It is fully configurable, which means you can set the bars for calculation, the offset and sources for trigger and calculation.
The original purpose for me was to send a command to my bot. If you like it please comment and check out my other scripts.
Nov 14
Release Notes:
somehow the alertcondition didn't make it into initial release. Thus added now.
Great work, very much appreciated!
However, by adding this code to my simple script I get an error message "Add to Chart operation failed, reason: The script must have one study() or strategy() function call"
I'm new to pinescript, trying to learn step by step so I'd much appreciate some help :)
I believe there should be an exit() command in order to backtest with the trailing stop, right?
Here is my code, a simple EMA crossover.. I
short_ema = ema(close, 9)
long_ema = ema(close, 30)
plot(short_ema, color =red)
plot(short_ema, color =green)
entry() => crossover( short_ema, long_ema)
exit() => crossunder( short_ema, long_ema)
strategy.entry(id = "long_ma", long = true, when = entry())
strategy.close(id = "long_ma", when = exit())
How would this fix your exchange not supporting stop loss?
@Kingii91, @theheirophant, there is much better version of AutoView - it's called ProfitView. Check it out. It has built in syntax testing, connection error handling and all sort of other cool stuff.