TradingView
RafaelZioni
12 פבר׳ 2019 09:05

zigzag% 

Bitcoin / US Dollar Perpetual Inverse Swap ContractBitMEX

תיאור

This is zigzag % , no repaint and no lag as it based on % changes
the main issue is the addition of take profit and stop loss together with trailing (thanks to Yatrader to his code)
set the zigzag% according to best fit of your graph for best results
תגובות
cryptophilia
A newbie question - How can this be transformed into a strategy?
nilux
@cryptophilya, yeah I have tried to change study to strategy and set isStrategy = true, isStudy = false but without success. The BT isn't giving me any data. @RafaelZioni
any suggestion?
RafaelZioni
@nilux, down is the code for it
RafaelZioni
@RafaelZioni, also the close in the end of the strategy when you covert it need to take to account the take profit ,trailing and stop loss, this section need to work out in order to see the true of this strategy . there is enormous different in results when you fix this issue. I need to work on it to find some solution to it .
moradi4201040
@RafaelZioni, Hello
Thank you for this very good strategy
Please for Meta Trader 4 program. Insert the codes of this strategy
Thankful
RafaelZioni
// BEGIN UNCOMMENT FOR BACKTESTING
strategy(title="strategy", shorttitle="strategy", overlay=true,
pyramiding=0, default_qty_value=100, commission_value=0.1, commission_type=strategy.commission.percent, initial_capital=1000)
strategyEntry(name, direction, myCondition) =>
if direction==1 and name=="Long"
strategy.entry("Long", 1, when= myCondition)
if direction==0 and name=="Short"
strategy.entry("Short", 0, when= myCondition)
strategyClose(name, myCondition) =>
if name=="Long"
strategy.close("Long", when= myCondition)
if name=="Short"
strategy.close("Short", when= myCondition)
isStrategy = true, isStudy = false
// END UNCOMMENT FOR BACKTESTING
nilux
@RafaelZioni, thank you for your quick response :) Something is wrong and I tried to fix it but without success.

This snippet gives me an error:

mismatched input 'if' expecting 'end of line without line continuation'
on line:
if direction==1 and name=="Long"

I tried to fix it but no success. Does it work for you? Do you get this error as well?

RafaelZioni
@nilux, it work but results does not look so good , i think i need to change few things and later i post strategy that better fit the data.
nilux
@RafaelZioni, You are right, the snippet is working but Tradingview removed the formatting/indent and thats why it wasn't working.
I posted the snippet here again with the correct line formatting/indenting: pastebin.com/vqT8VKk1
kpiyush114
@nilux, This still isn't working for me, added the backtesting code in new blank strategy- I'm a beginner - please help!
עוד