צפיות 3077
Alerts for famous Turtle Trading Rules. Based on work from tmr0 and ossettia. It can be used with Autoview.
If you have any advice on how to further improve the script, please let me know by PM or comment below. Thanks!
Please hit on "Like" if you find this script useful so that others can find it easier. Thanks!
*** The information and script provided here are no recommendation to buy or sell. They are just an idea for educational and discussion purposes. ***
If you have any advice on how to further improve the script, please let me know by PM or comment below. Thanks!
Please hit on "Like" if you find this script useful so that others can find it easier. Thanks!
*** The information and script provided here are no recommendation to buy or sell. They are just an idea for educational and discussion purposes. ***
Apr 06
הערות שחרור:
Alerts for famous Turtle Trading Rules. Based on work from tmr0 and ossettia. Compatible with Autoview.
Please "Like" if you find this script useful. Thanks!
Update v2: Label positioning and naming below (buy) and above (sell) bars added to better visualize entries and exits.
*** The information and script provided here are no recommendation to buy or sell. They are just an idea for educational and discussion purposes. ***
Please "Like" if you find this script useful. Thanks!
Update v2: Label positioning and naming below (buy) and above (sell) bars added to better visualize entries and exits.
*** The information and script provided here are no recommendation to buy or sell. They are just an idea for educational and discussion purposes. ***
Apr 07
הערות שחרור:
Added background color: red = short / blue = long.
Please like if you find this script useful. Thanks!
Please like if you find this script useful. Thanks!
Jun 29
הערות שחרור:
Please like if you find this script useful. Thanks!
- Updated to Pine Script v4
- Changed shape of label
- Changed label colors to better distinguish between fast and long signals
Please like if you find this script useful. Thanks!
// fast L
// plotshape(enterL1_final, color = #1e90ff, text = "OFL", style=shape.triangleup, location=location.belowbar, size=size.small)
// plotshape(exitL1_final, color = #ff69b4, text = "CFL", style=shape.triangledown, location=location.abovebar, size=size.small)
// fast S
// plotshape(enterS1_final, color = #ff69b4, text = "OFS", style=shape.triangledown, location=location.abovebar, size=size.small)
// plotshape(exitS1_final, color = #1e90ff, text = "CFS", style=shape.triangleup, location=location.belowbar, size=size.small)
// slow L
plotshape(enterL2_final, color = #0000ff, text = "OSL", style=shape.triangleup, location=location.belowbar, size=size.small)
plotshape(exitL2_final, color = #ff0000, text = "CSL", style=shape.triangledown, location=location.abovebar, size=size.small)
// slow S
plotshape(enterS2_final, color = #ff0000, text = "OSS", style=shape.triangledown, location=location.abovebar, size=size.small)
plotshape(exitS2_final, color = #0000ff, text = "CSS", style=shape.triangleup, location=location.belowbar, size=size.small)
Find below the explanation of the abbreviations. This script is based on the Turtle Trading Strategy. Initial work was done by tmr0, he also wrote an article on it (find the relevant links below).
- Initial work done by tmr0 here on TV:
- Article written by tmr0: https://hackernoon.com/my-super-secret-crypto-turtle-strategy-revealed-ae7492fb01a6
There are also several books written on this trading strategy. It got famous in the 1980's and after nearly 40 years it has still its validity.
Buying / Long
cfS = close fast Short = Exit fast Short
csS = close slow Short = Exit slow Short
ofL = open fast Long = Enter fast Long
osL = open slow Long = Enter slow Long
Selling / Short
cfL = close fast Long = Exit fast Long
csL = close slow Long = Exit slow Long
ofS = open fast Short = Enter fast Short
osS = open slow Short = Enter slow Short
Regarding your question what indicator could improve this script: This is a good question. Below you see my chart with various important and relevant indicators. By comparing price action with indicators it's really hard to tell which indicator tells us something more about when to enter and when to exit. If you find something, I would be curious to know as well. :)
If you found a relevant improvement, let me know as well. In best case I can integrate it in this script and update it. Thanks.
a=enter-fast-L d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=long l=5 q=100 t=limit ro=0
a=enter-slow-L d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=long l=5 q=100 t=limit ro=0
a=exit-fast-S d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=long l=5 q=100 t=limit ro=1
a=exit-slow-S d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=long l=5 q=100 t=limit ro=1
a=exit-fast-L d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=short l=5 q=100 t=limit ro=1
a=exit-slow-L d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=short l=5 q=100 t=limit ro=1
a=enter-fast-S d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=short l=5 q=100 t=limit ro=0
a=enter-slow-S d=1
a=bitmex-testnet e=bitmex-testnet s=XBTUSD b=short l=5 q=100 t=limit ro=0