ดัชนีดอลล่าร์สหรัฐอเมริกา, THB/USD, EUR/USD, USD/JPY, GBP/USD, GBP/JPY
PTT PUBLIC COMPANY LIMITED, BANGKOK EXPRESSWAY AND METRO, PTT GLOBAL CHEMICAL PUBLIC COMPANY, TAOKAENOI FOOD & MARKETING, AIRPORTS OF THAILAND PUBLIC COMPANY, INDORAMA VENTURES PUBLIC COMPANY LIMITED
SET INDEX, SET100 INDEX, เอสแอนด์พี 500, ดาวน์ 30, นิเคอิ 225, ฮั่งเส็ง
ทองคำ, น้ำมันดิบ, BRENT LAST DAY FINANCIAL FUTURES (CONTINUOUS: CURRENT CONTRACT IN FRONT), เงิน, ก๊าซธรรมชาติ, บิทคอยน์
สหรัฐอเมริกา 10 ปี, พันธบัตรยูโร, เยอรมัน 10 ปี, ผลตอบแทนพันธบัตรญี่ปุ่น 10 ปี, สหราชอาณาจักร 10 ปี, อินเดีย 10 ปี
ทองคำ, น้ำมันเบรนท์, น้ำมันดิบ, สัญญาการซื้อขายส่วนต่างก๊าซธรรมชาติ, พาลาเดียม, เงิน
ATR Trailing Stoploss Buy=crossover(close,TS) Sell=crossunder(close,TS)
This script provides high probability entry points and includes Take Profit and Stop Loss targets. It attempts to predict when the market conditions are set to move up, and prints long positions. In addition to Long Entry Arrows, it will print Take Profit / Stop Loss targets. This indicator is highly adjustable. Hence the name 'Experimental' in the title....
I realized that the zone changes in the stoploss remained slow, so I couldn't make enough use of the characteristics of technical indicators when opening positions. This pushed me to keep stop-loss under the influence of a dependent variable. This script helped me a lot (everget) : I've redesigned the...
This script is for a triple moving average strategy where the user can select from different types of moving averages, price sources, lookback periods and resolutions. Features: - 3 Moving Averages with variable MA types, periods, price sources, resolutions and the ability to disable each individually. - Crossovers are plotted on the chart with detailed...
This is the Count Back Line script from the book Guppy Trading by Daryl Guppy. It is usually used as a stop loss line, but can also be used to find entries. Hope someone finds it usefull, if you find anything that is wrong with it, please let me know and I will try to fix it. This is my first PineScript, hope it is working as intended.
Plots crosses above and below the current price giving you the ability to quickly set your stop loss (or the 1st profit target) depending on a custom variable by which the average true range is multiplied with the option to specify the length as well as the type of the moving average (RMA, SMA, EMA or WMA) that are taking into account. Optionally, you can disable...
This is a redesign of the built-in Parabolic SAR indicator. I added a proper input system, an option to highlight initial points for both lines and an option to choose points width. So, customize it as you want. Parabolic SAR was originally developed by J. Welles Wilder and described in his book "New Concepts in Technical Trading Systems" (1978). It is a...
// Constructs the trailing ATR stop above or below the price, and switches // directions when the source price breaks the ATR stop. Uses the Average // Directional Index (ADX) to switch between ATR multipliers. The higher // multiplier is used when the ADX is rising, and the lower ATR multiplier // is used with the ADX is falling. This ADX criteria further widens...
This is a redesign of the Chandelier Exit indicator. It removes stupid transitions between Chandelier Exit' states and highlights initial points for both lines. This indicator was originally developed by Charles Le Beau and popularized by Dr. Alexander Elder in his book "Come Into My Trading Room: A Complete Guide to Trading" (2002). In short, this is a trailing...
Constructs the trailing ATR stop above or below the price, and switches directions when the source price breaks the ATR stop. Uses the Average Directional Index (ADX) to switch between ATR multipliers. The higher multiplier is used when the ADX is rising, and the lower ATR multiplier is used with the ADX is falling. This ADX criteria further widens the gap between...
## THIS SCRIPT IS ON GITHUB ## MORE BACKTEST SuperTrend is a moving stop and reversal line based on the volatility (ATR). The strategy will ride up your stop loss when price moviment 1%. The strategy will close your operation when the market price crossed the stop loss. The strategy will close operation when the line based on the volatility will crossed The...
##THIS SCRIPT IS ON GITHUB This TradingView strategy it is designed to integrate with other strategies with indicators. It performs a trailing stop loss from entry and exit conditions. In this strategy you can add conditions for long and short positions. The strategy will ride up your stop loss when price moviment 1%. The strategy will close your operation when...
I am republishing this indicator as something changed within TradingView's script engine so that the old script ceased to function ( a minor syntax error that used to be acceptable but no longer is). Anyhow here's the fixed version which as you can see has done a great job of keeping us on the right side of the trend with once-hot stocks like Skyworks !
This is the Backtest version of the previous one. It's important to correctly set the "TICKS / PIPS CORRECTION" parameter in each different chart. Enjoy!
Another script based on Linda Raschke's strategy with the same name from her book about swing trading.
//@version=3 study("MavilimW,DARVAS,Tillson T3,trailing stop loss,ichimoku", overlay=true) M1= wma(close, 3) M2= wma(M1, 5) M3= wma(M2, 8) M4= wma(M3, 13) M5= wma(M4, 21) MAVW= wma(M5, 34) plot(MAVW, color=blue, linewidth=2) //@version=3 //author KıvanÇ @fr3762 on twitter //creator Nicholas...
A simple visual representation of ATR trading targets. The indicator shows ATR targets (TP and SL) from the last swing points (if you entered there) There is an option to chose targets for a long or short position. JD. #NotTradingAdvice #DYOR I build these indicators for myself and provide them open source, to use for free to use and improve upon, as I believe...
Standard Percentage-based Stop Loss for long and short, with configurable extra exit conditions. Just copy/paste into your script. Uses "low" and "high" values for crossing the stop loss threshold, but can be changed to "close" if you prefer (change "low" and "high" on lines 31 and 32 to "close")