Tilson T3 Strategy version. the original version is here :
Sürüm Notları:
some money update
Korumalı komut dosyası
Bu komut dosyası kapalı kaynak olarak yayınlanmıştır ve özgürce kullanabilirsiniz. Bir grafikte kullanmak için favorilerinize ekleyebilirsiniz. Kaynak kodunu görüntüleyemez veya değiştiremezsiniz.
Bu komut dosyasını bir grafikte kullanmak ister misiniz?
Thank you very much for sharing. I have tried to duplicate this but with the ability to select a date range to backtest further. The issue I am having is about 75% of my entries match yours exactly and 25% are a candle late. How do I fix it? Here is my code I used for the entry:
longCondition = T3 > T3 and T3 <= T3
if (inDateRange and longCondition)
strategy.entry("Long Entry", strategy.long)
shortCondition = T3 < T3 and T3 >= T3
if (inDateRange and shortCondition)
strategy.entry("Short Entry", strategy.short)
Yorumlar
Fakat strateji testi yapmak için girdileri değiştirmeme rağmen sonuçlar değişmiyor.
Neden acaba?
Thank you very much for sharing. I have tried to duplicate this but with the ability to select a date range to backtest further. The issue I am having is about 75% of my entries match yours exactly and 25% are a candle late. How do I fix it? Here is my code I used for the entry:
longCondition = T3 > T3 and T3 <= T3
if (inDateRange and longCondition)
strategy.entry("Long Entry", strategy.long)
shortCondition = T3 < T3 and T3 >= T3
if (inDateRange and shortCondition)
strategy.entry("Short Entry", strategy.short)