Bjorgum Key Levels
Key Levels Aims to capture 3 of the most significant points in price action
Breakouts
False Breakouts (Traps)
Back Checks
These 3 points alone, if properly identified, can be some of the most significant points of movement in the price history of an asset and bring significant gains to traders, if capitalized on. Here are a few examples of these setups
Breakouts
Breakouts can bring significant rallies as the market swings one sided after key levels are breached. This entry type can bring large trending runs to follow. Momentum is on your side, but the trade off is a higher entry.
False Breakouts
Also known as a bull trap or a bear trap, false breaks can lead to swift and significant reversals and potential for a large and sudden move to the opposite side. When a key level breakout fails to hold, parties entering to capitalize on the "epic breakout" can get left holding the bag forcing them to exit at a loss, which can double the force of pressure. Traps can bring swift gains from good entry prices. However, price is still in a larger trend against you so momentum is weak, so price action is susceptible to roll over.
Backchecks
Back checks are pull backs in trend that find middle ground to the 2 areas already described. Both momentum and entry price are decent, but risk is defined as a key level has flipped offering entry with stops below demand, or above supply.
Combining these 3 methods helps to diversify risk, understand trend development, and bring steady gains. This script helps to identify these points to traders with analysis of key levels, price structure, and trend direction, while providing visual signals and alerts for when they occur.
Best of luck in your coding and trading and thank you for your support
Profitable
when bull D timeframeEcco a voi la mia strategia basata su atr con implementazioni personali per definire facilmente la condizione di mercato su btc e eth, come potete vedere punta ad identificare solo le salite più importati ignorando i falsi segnali che avvengono nelle fasi di bear market (o di incertezza). Da utilizzare con timeframe D.
Condivido una versione disponibile e funzionante gratuitamente fino al 31/12/2022 dopo tale data lo script tornerà a pagamento.
Here is my strategy based on atr with personal implementations to easily define the market condition on btc and eth, as you can see it aims to identify only the most important climbs ignoring the false signals that occur in the bear market (or uncertainty) phases. For use with timeframe D. I share a version available and working for free until 31/12/2022 after that date the script will return not for free.
Stay Tuned
Forex Fractal EMA ScalperThis is a forex scalper designed for very short timeframes 1-5 min max.
At the same time due to the short timeframe, is recommend to re optimize it weekly .
Its components are
Fractals
Triple EMA with different lengths
Rules for entry:
For long : we have an up fractal and all 3 ema are in ascending order
For short: we have a down fractal and all 3 ema are in descending order.
Rules for exit
We exit when we either get a reverse order or when we hit the take profit or stop loss calculated in fixed pips.
3Commas BotBjorgum 3Commas Bot
A strategy in a box to get you started today
With 3rd party API providers growing in popularity, many are turning to automating their strategies on their favorite assets. With so many options and layers of customization possible, TradingView offers a place no better for young or even experienced coders to build a platform from to meet these needs. 3Commas has offered easy access with straight forward TradingView compatibility. Before long many have their brokers hooked up and are ready to send their alerts (or perhaps they have been trying with mixed success for some time now) only they realize there might just be a little bit more to building a strategy that they are comfortable letting out of their sight to trade their money while they eat, sleep, etc. Many may have ideas for entry criteria they are excited to try, but further questions arise... "What about risk mitigation?" "How can I set stop or limit orders?" "Is there not some basic shell of a strategy that has laid some of this out for me to get me going?"
Well now there is just that. This strategy is meant for those that have begun to delve into the world of algorithmic trading providing a template that offers risk defined positions complete with stops, limit orders, and even trailing stops should one so choose to employ any of these criteria. It provides a framework that is easily manipulated (with some basic working knowledge of pine coding) to encompass ones own ideas and entry criteria, while also providing an already functioning strategy.
The default settings have a basic 1:1 risk to reward ratio, which sets a limit and a stop equal distance from the entry. The entry is a simple MA cross (up for long, down for short). There a variety of MA's to choose from and the user can define the lengths of the averages. The ratio can be adjusted from the menu along with a volatility based adder (ATR) that helps to distance a stop from support or resistance. These values are calculated off the swing low/high of the user defined lookback period. Risk is calculated from position entry to stop, and projected upwards to the limit as a function of the desired risk to reward ratio. Of note: the default settings include 0.05% commissions. Competitive commissions of the leading cryptocurrency exchanges are .1% round trip (one buy and one sell) for market orders. There is also some slippage to allow time for alerts to be sent and orders to fill giving the back test results a more accurate representation of real time conditions. Its recommended to research the going rates for your exchange and set them to default for the strategy you use or build.
To get started a user would:
1) Make a copy of the code and paste in their bot keys in the area provided under the "3Comma Keys" section
- eg. Long bot "start deal" copied from 3commas in to define "Long" etc. (code is commented)
2) Place alert on desired asset with desired settings ensuring to select "Order fills and alert() function calls"
3) Paste webhook into the webhook box and select webhook URL alerts (3rd party provided webhook)
3) Delete contents of alert message box and replace with {{strategy.order.alert_message}} and nothing else
- the codes will be sent to the webhook appropriately as the strategy enters and exits positions. Only 1 alert is needed
settings used for the display image:
1hr chart on BTCUSD
-ATR stop
-Risk adjustment 1.2
-ATR multiplier 1.3
-RnR 0.6
-MAs HEMA/SMA
-MA Length 50/100
-Order size percent of equity
-Trail trigger 60% of target
Experiment with your own settings on your crypto of choice or implement your own code!
Implementing your trailing stop (optional)
Among the options for possible settings is a trailing stop. This stop will ratchet higher once triggered as a function of the Average True Range (ATR). There is a variable level to choose where the user would like to begin trailing the stop during the trade. The level can be assigned with a decimal between 0 and 1 (eg. 0.5 = 50% of the distance between entry and the target which must be exceeded before the trail triggers to begin). This can allow for some dips to occur during the trade possibly keeping you in the trade for longer, while potentially reducing risk of drawdown over time. The default for this setting is 0 meaning unless adjusted, the trail will trigger on entry if the trailing stop exit method is selected. An example can be seen below:
Again, optional as well is the choice to implement a limit order. If one were to select a trailing stop they could choose not to set a limit, which could allow a trail to run further until hit. Drawdowns of this strategy would be foregoing locking gains at highs on target on other trades. This is a trade-off the user can decide on and test. An example of this working in favor can be observed below:
Conclusion
Although a simple strategy is implemented here, the benefits of this script allow a user a starting platform to build their strategies from with built in risk mitigation. This allows the user to sidestep some of the potential difficulties' that can arise while learning Pine and taking on the endeavor of automating their trading strategies. It is meant as an aid, a structure, and an educational piece that can be seen as a "pick-up-and-go" strategy with easy 3Commas compatibility. Additionally, this can help users become more comfortable with strategy alert messages and sending strings in the form of alerts from Pine. As well, FAQs are often littered with questions regarding "strategy.exit" calls, how to implement stops. how to properly set a trailing stop based on ATR, and more. The time this can save an individual to get started is likely of the best "take-aways" here.
Happy trading
Sola Fide [Strategy]Sola Fide High Accuracy with ATR R:R
Indicators used:
- Stochastic RSI
- Chopiness Index
- RSI
- Ichimoku Cloud
- ATR
Script has been set up in strategy format to give backtesting data.
The strategy has been made for BTC and ETH pairs against USDT on the hourly timerframe
Currently outperforming the Buy and Hold Return on both assets.
This script has been made to make it easier to automate strategies on 3commas
In the settings you will see options for BTC strategy or ETH strategy
Choose the asset you are on, copy your 3commas Bot ID and Email token and paste them into the settings box for eachever asset you are on.
To receive the alerts set up within the strategy, in your alert message box use " {{strategy.order.alert_message}}"
This will then be able to send any orders taken on the tradingview script directly to your long or short bot on 3commas
This strategy is set up with a strict set of rules on the ATR for the Take profits and Losses.
There is a repaint warning because the code uses heikin ashi candles through the security function, the given entry and exit signals do not repaint,
I have been automating this for myself with no errors.
You don't need to use more than 3x leverage...
Past results do not guarentee future results.
Simple Moving Average CrossoverThis strategy uses two moving averages of 21 and 8 to generate buy or sell signal.
This is for purely intraday trades and best use in 15 min time frame
This strategy uses angle/slope of ma to filter out period of sideways movement and only generate signals when the stock starts trending in one direction
How to use this
1) Buy when the buy is generated
2) Sell when the sell is generated
Properties you can tweak to adjust this strategy to your needs are
1) angle -> Adjust this properties to define how much slope would be considered to generate the signals, higher the values lesser the trades generated.
2) atr period-> this is to adjust the atr period
3) ma source -> close is considered as source , you can use open or high or low
Hullk Autobot
HULLK AUTOBOT
• Long entry positions
• Profit targets
• Stop loss targets
Description
The Fast Signal Line is an extremely fast and smooth moving average indicator, designed to eliminate
the lag typically associated with traditional moving average indicators.
When the price is trending upward the Fast Signal Line is colored light grey then turns orange when
price is trending downward.
How to Trade
It is good practice to assess multiple timeframes to ensure you are mindful of the larger picture. The
15 minute and 4-hour charts are worthy of note.
In addition to displaying the current macro trend, the Fast Signal Line can also be used for judging
entries and exits from trades.
Aggressive traders may choose to trade based on the first touch of the Fast Signal Line whereas
conservative traders may wait for the signal line to be broken and established as a line of support or
resistance before taking action.
Indicator Configuration
The Fast Signal Line’s display and colors can be changed by modifying the ‘Fast Signal’ options in
the indicator’s style settings;
Volume Line
Description
The Volume Line uses short-term historic volume data to determine the balance between demand
and supply.
When volume is supporting price the Volume Line is colored yellow then turns red when the volume is
rejecting the price.
How to Trade
While the Volume Line can indicate support and resistance levels, it is best used to confirm bias
when using the Fast Trend Line indicator to enter or exit trades and can also be used by traders for
stop-loss or take profit entries.
Indicator Configuration
The Volume Line’s display and colors can be changed by modifying the ‘Volume’ options in the
indicator’s style settings;
Trend Line
Description
The Trend Line is a Weighted Moving Average indicator based on a fixed period and is used to
identify the current trend of the market.
When supporting the price, the Trend Line is colored green then turns red when rejecting the price.
How to Trade
Timeframes of 4H and above are best used to determine the current trends, while shorter timeframes
can be used for entering and exiting trades when the trendline is turning in the relevant direction.
Indicator Configuration
The Trend Line’s display and colors can be changed by modifying the ‘Volume’ options in the
indicator’s style settings;
Whales Volume Line
Description
The Whales Volume Line uses long-term historic volume data to determine the balance between
demand and supply dictated by large/institutional traders in the market.
When volume is supporting price the Volume Line is colored yellow then turns red when the volume is
rejecting the price.
How to Trade
While the Whale Volume Line can indicate support and resistance levels, it is best used to confirm
bias when using the Fast Trend Line indicator to enter or exit trades and can also be used by traders
for stop loss or take profit entries.
Indicator Configuration
The Whales Volume Line’s display and colors can be changed by modifying the ‘Whales Volume’
options in the indicator’s style settings;
Trendline Direction Line
Description
The Direction Line is a Weighted Moving Average indicator based on a longer period than the Trend
Line and is used to identify the current direction of the market.
The Direction Line indicator is colored purple when the market direction is up trending and red when
downtrend.
How to Trade
Timeframes of 4H and above are best used to determine current trend, while shorter timeframes
can be used for entering and exiting trades when the trendline is turning in the relevant direction.
Indicator Configuration
The Trendline Direction’s display and colors can be changed by modifying the ‘Trendline Direction’
options in the indicator’s style settings;
Channel Line
Description
The Channel Line is a Least Squares Moving Average indicator based on a fixed period and is used as
a crossover signal to identify bullish or bearish trends ahead of traditional simple or exponential
moving averages.
The Channel Line indicator is colored cyan when the market direction is up trending and red when
downtrend.
How to Trade
When the Channel Line changes to an uptrend along with a recovery in price, traders can use this as a
signal to enter a long position. If the signal changes to a downtrend along with a fall in price, traders
can use this to enter a short position.
Indicator Configuration
The Channel Line’s display and colors can be changed by modifying the ‘Channel’ options in the
indicator’s style settings;
Dip & Pop Signals
Description
Dip and Pop signals occur when the price is likely to make a counter-trend movement before continuing
its direction.
In a bullish trend, a Dip signal suggests that price will move down to test support before continuing,
whereas a Pop signal suggests that price will move up. In a bearish trend, a Pop signal suggests that
price will move up to test resistance before continuing, whereas a Dip signal would suggest price is
likely to continue the trend.
How to Trade
Dip and Pop signals should be used as notification for preparation rather than a call to action as the price
can move unpredictably during volatility.
Indicator Configuration
The Dip & Pop’s display and colors can be changed by modifying the ‘PoP’ & ‘DIP’ options in the
indicator’s style settings;
Entry & Exit Signals
Description
Entry and Exit Signals are indications of when to open and close trades but should be used in
conjunction with other indicators to interpret their meaning.
How to Trade
While Entry and Exit signals can be interpreted as simple long and short entries, their meaning does
change based on trend circumstance. An Entry signal is typically printed price is starting to see a
positive reaction after a drop.
When the Fast Signal, Trend, and Trend Direction lines are indicating an upward trend an Entry signal
signifies a good place to enter a long or exit a short position. However, if the lines are not suggesting
an upward trend then a long signal indicates that any long order should be exited as any new long
orders in this scenario are risky as you would be opening a position at resistance.
Likewise, when indicator lines are indicating a downward trend and an Exit signal is received this
signifies a good place to enter a short or exit a long position. However, if the signal is against the
trendlines then this is a riskier short into support.
Indicator Configuration
The Entry & Exit’s display and colors can be changed by modifying the ‘Entry’ & ‘Exit’ options in the
indicator’s style settings;
If you have any questions or are looking for access please send me a private message.
Thx for your time and support
Bjorgum Triple EMA Strat-This script uses a triple EMA strategy to establish trend direction and reversal points
-Inputs are smoothed with Heiken Ashi values to reduce whipsaws, while providing timely execution
-Buy and sell indications are dictated by bar color
-Bar color is dictated by the candle close value in relation to the EMAs, specifically the faster of the 3
(If candle closes above or below the fast and intermediate averages, a buy or sell signal is indicated by bar color change)
-If the close falls between the two a cautionary signal is given. The viewer can hold, or take profit, or evaluate other indicators for clues
-Best results are obtained when coupled with Bjorgum TSI and Bjorgum RSI for confirmation of signals (see TradingView profile)
@Bjorgum on Stocktwits
DMT 369 DRAGRONFLY StudyDragonfly Study version plus statistics panel
Successful traders trade with a fixed plan and without emotion, but this a lot harder than many new traders think. Many never master this skill and suffer continual drawdowns on their accounts as they overtrade high leverage positions in volatile markets.
ĐΜŦ Autobot resolves this issue by taking the human element out of the equation, allowing full automation of trades using TradingView alerts to trigger your favourite trading bot, such as Alertatron or 3Commas.
Being a Trend Reversal Indicator based on Volatility & Average True Range , ĐΜŦ Autobot is designed to identify spots in the market that offer suitable scalp and swing trade opportunities.
Due to popular demand we have expanded our ĐΜŦ Autobot product line to include the new ĐΜŦ Autobot Dragonfly 3-6-9 Edition which combines DMT with 3-6-9 Vortex mathematics, our Titan indicator and a multi-ladder scalping strategy to ensure you maintain a preferable average entry when price action moves against your position.
Indicator View
It its default state the DMT Autobot Dragonfly indicator displays key signal information, such as:
• Support & resistance range lines
• Titan Body Small & Large Time Frame lines
• Long & Short entry positions
• Long & Short position ladders
• Profit targets
Dragonfly displays a range between resistance (upper line) and support (lower line) on the chart.
Once the price is granted support in the range the lower line will turn green. As price action develops it will make repeated attempts to test support. If support holds price will attempt to test the resistance line (red).
When resistance is broken and the price is above the upper line, the line will turn blue confirming the bullish momentum and provide a potential buy opportunity.
Price action will make attempts to test the upper line as support and will keep rising while support is granted.
Once support is lost the upper line will become red once more. As price action develops it will make repeated attempts to test resistance. If resistance holds, the price will attempt to test the support line (green).
When support is broken and the price goes below the lower line, the line will turn red confirming the bearish momentum and provide a potential selling opportunity.
Price action will make attempts to test the lower line as resistance and will keep dropping while resistance is granted.
Titan Body
The Titan Body Small & Large time frame options in the indicator add additional trendlines to the chart to provide further clarity and confirmation to the Support & Resistance range indication.
Once price is granted support by the Small Time Frame trend line the line will turn green. As price action develops it will make repeated attempts to test the Small Time Frame support. Once the price is below the Small Time Frame trend line , the line will turn red and can act as resistance in a trend reversal.
When price is granted support by the Large Time Frame trend line the line will turn cyan. As price action develops it will make repeated attempts to test the Large Time Frame support. Once the price is below the Large Time Frame trend line , the line will turn orange and can act as resistance in a trend reversal.
The Titan Body enabled and customized in the indicator’s style settings,
Alert indicators
DMT Autobot Dragonfly Edition generates signals that can be used to scalp trade a volatile asset.
Signals are enabled and customized in the indicator’s input settings Additional options can be found in the options, but it is recommended that these are left at the default, as shown below. The indicator generates many
Entry and Profit levels can be disabled or customized in the indicator’s style settings,
Tradingview Alerts
Using Tradingview alerts, DMT Autobot Dragonfly signals can be used to trigger a trading bot.
To trigger a long or short position, set the Tradingview Alert Condition to DMT 369 Dragonfly and select the long or short option.
It is recommended that long or short positions are configured to trigger Once Per Bar Close
Ladders can also be triggered using alerts. To trigger a ladder order, set the Tradingview Alert Condition to DMT 369 Dragonfly and select the appropriate Long or Short ADD option that is to be triggered by the relevant values defined in the indicator’s configuration.
It is recommended that ladder orders are configured to trigger Once Per Bar,
To trigger a take profit order, set the Tradingview Alert Condition to DMT 369 Dragonfly and select the Long or Short TP option that is to be triggered by the relevant values defined in the indicator’s configuration.
Take profit orders can be configured as Once Per Bar Close or Once Per Minute.
If you wish to trigger a take profit signal immediately when the indicator’s defined take profit value is achieved, then use the Once Per Bar option.
Selecting Once Per Bar Close to generate a take profit signal is a gamble as the candle may close far away from the defined profit target – positive or negative.
While stops can be used, they are not applicable to the recommended ladder strategy.
Ladder Strategy
The DMT Autobot Dragonfly indicator always turns an underwater position into a win by utilizing a ladder strategy.
By using the recommended defaults, the indicator will trigger ladder orders at 3%, 6% & 9% using increasing order sizes,
Order sizes increase exponentially to ensure a good average price is maintained. If you are not using DMT Autobot Dragonfly signals to trigger ladder or take profit orders, please ensure your trading bot is configured to recalculate the new ladder entry and profit target based on the new average position entry price as each ladder is filled.
If you are using DMT Autobot Dragonfly on a leveraged asset, please ensure the leverage position is configured suitably so that your position is not liquidated if the price rapidly moves against you.
If u are looking for more information or access to the script please private msg me in trading view chat thx for support
DMT 369 DRAGRONFLY STRATSuccessful traders trade with a fixed plan and without emotion, but this a lot harder than many new traders think. Many never master this skill and suffer continual drawdowns on their accounts as they overtrade high leverage positions in volatile markets.
ĐΜŦ Autobot resolves this issue by taking the human element out of the equation, allowing full automation of trades using TradingView alerts to trigger your favourite trading bot, such as Alertatron or 3Commas.
Being a Trend Reversal Indicator based on Volatility & Average True Range, ĐΜŦ Autobot is designed to identify spots in the market that offer suitable scalp and swing trade opportunities.
Due to popular demand we have expanded our ĐΜŦ Autobot product line to include the new ĐΜŦ Autobot Dragonfly 3-6-9 Edition which combines DMT with 3-6-9 Vortex mathematics, our Titan indicator and a multi-ladder scalping strategy to ensure you maintain a preferable average entry when price action moves against your position.
Indicator View
It its default state the DMT Autobot Dragonfly indicator displays key signal information, such as:
• Support & resistance range lines
• Titan Body Small & Large Time Frame lines
• Long & Short entry positions
• Long & Short position ladders
• Profit targets
Dragonfly displays a range between resistance (upper line) and support (lower line) on the chart.
Once the price is granted support in the range the lower line will turn green. As price action develops it will make repeated attempts to test support. If support holds price will attempt to test the resistance line (red).
When resistance is broken and the price is above the upper line, the line will turn blue confirming the bullish momentum and provide a potential buy opportunity.
Price action will make attempts to test the upper line as support and will keep rising while support is granted.
Once support is lost the upper line will become red once more. As price action develops it will make repeated attempts to test resistance. If resistance holds, the price will attempt to test the support line (green).
When support is broken and the price goes below the lower line, the line will turn red confirming the bearish momentum and provide a potential selling opportunity.
Price action will make attempts to test the lower line as resistance and will keep dropping while resistance is granted.
Titan Body
The Titan Body Small & Large time frame options in the indicator add additional trendlines to the chart to provide further clarity and confirmation to the Support & Resistance range indication.
Once price is granted support by the Small Time Frame trend line the line will turn green. As price action develops it will make repeated attempts to test the Small Time Frame support. Once the price is below the Small Time Frame trend line, the line will turn red and can act as resistance in a trend reversal.
When price is granted support by the Large Time Frame trend line the line will turn cyan. As price action develops it will make repeated attempts to test the Large Time Frame support. Once the price is below the Large Time Frame trend line, the line will turn orange and can act as resistance in a trend reversal.
The Titan Body enabled and customized in the indicator’s style settings,
Alert indicators
DMT Autobot Dragonfly Edition generates signals that can be used to scalp trade a volatile asset.
Signals are enabled and customized in the indicator’s input settings Additional options can be found in the options, but it is recommended that these are left at the default, as shown below. The indicator generates many
Entry and Profit levels can be disabled or customized in the indicator’s style settings,
Tradingview Alerts
Using Tradingview alerts, DMT Autobot Dragonfly signals can be used to trigger a trading bot.
To trigger a long or short position, set the Tradingview Alert Condition to DMT 369 Dragonfly and select the long or short option.
It is recommended that long or short positions are configured to trigger Once Per Bar Close
Ladders can also be triggered using alerts. To trigger a ladder order, set the Tradingview Alert Condition to DMT 369 Dragonfly and select the appropriate Long or Short ADD option that is to be triggered by the relevant values defined in the indicator’s configuration.
It is recommended that ladder orders are configured to trigger Once Per Bar,
To trigger a take profit order, set the Tradingview Alert Condition to DMT 369 Dragonfly and select the Long or Short TP option that is to be triggered by the relevant values defined in the indicator’s configuration.
Take profit orders can be configured as Once Per Bar Close or Once Per Minute.
If you wish to trigger a take profit signal immediately when the indicator’s defined take profit value is achieved, then use the Once Per Bar option.
Selecting Once Per Bar Close to generate a take profit signal is a gamble as the candle may close far away from the defined profit target – positive or negative.
While stops can be used, they are not applicable to the recommended ladder strategy.
Ladder Strategy
The DMT Autobot Dragonfly indicator always turns an underwater position into a win by utilizing a ladder strategy.
By using the recommended defaults, the indicator will trigger ladder orders at 3%, 6% & 9% using increasing order sizes,
Order sizes increase exponentially to ensure a good average price is maintained. If you are not using DMT Autobot Dragonfly signals to trigger ladder or take profit orders, please ensure your trading bot is configured to recalculate the new ladder entry and profit target based on the new average position entry price as each ladder is filled.
If you are using DMT Autobot Dragonfly on a leveraged asset, please ensure the leverage position is configured suitably so that your position is not liquidated if the price rapidly moves against you.
If u are looking for more information or access to the script please private msg me in trading view chat thx for support
Y-Profit Maximizer Strategy with Exit PointsThis script based on KivancOzbilgic 's PMax indicator. I modified a bit. Added Filters, Exit (TP) Levels and few indicator in it. This script opening only Long Positions.
I have used this indicators in this strategy:
-Moving Stop Loss (Most) by ceyhun
-PMax Explorer STRATEGY & SCREENER
-Bollinger Bands on Macd
-Tillson T3 Moving Average by KIVANÇ fr3762
I am open to suggestions for improve this script.
PS: Script is in Turkish Language.
VWAP + Fibo Dev Extensions StrategyBased on my VWAP + Fibo deviations indicator, I tested some strategies to see if the indicator can be profitable; and I got it !
This strategy uses:
H1 timeframe
Weekly VWAP
+1.618 / +2.618 / -1.618 / -2.618 Deviations Extensions to create 2 bands
The value of the deviation
First, the 2 bands are plotted : +1.618/+2.618 painted in red and -1.618/-2.618 painted in lime.
Then, we wait for the deviation value to reach at least 150 (see thumbnail) to avoid littles moves when the gaps between bands are too short.
Entry long position :
first candle must crossunder the -1.618 level and low have to stay over the -2.618
low of the second one must stay in the lime band
enter the third one if the deviation value is over limit (150)
Exit long position :
TP : when a high crossover VWAP
SL : when a low crossunder -2.618
Entry short position :
first candle must crossover the +1.618 level and high have to stay under the +2.618
high of the second one must stay in the red band
enter the third one if the deviation value is over limit (150)
Exit short position :
TP : when a low crossunder VWAP
SL : when a high crossover +2.618
Notes :
this strategy uses pyramiding (5), be careful and calculate your risk management
the comission value is set to 0.08% to include slippages when entering a trade because of market orders
This strategy is not an advice to invest, make your own decisions.
RSI on VWAP Upgraded strategyFirst of all, the idea of apply RSI to VWAP was inspired by XaviZ; at least, that where I first saw that.
I simply applied the idea and searched for apply this on lower timeframe (M15) to increase the number of positions and improve the profit factor.
The conditions to enter are the same :
long : enter on RSI crossover oversold level
short : enter on RSI crossunder oversell level
To close position, I found a little change to apply :
long : close position when RSI(VWAP) went in overbought zone and crossunder the overbought level OR after being at least x bars in the overbought zone (parameter is 28 by default) => when the first condition happens
short : close position when RSI(VWAP) went in oversold zone and crossover the oversold level OR after being at least x bars in the oversell zone (parameter is 28 by default) => when the first condition happens
With this change, I got better results specially on BTCUSDTPERP (M15) where I reach a 6.8 profit factor with 119 trades closed. Not BAD !
The defaults parameters are the best found for BTCUSDTPERP (M15), but the strategy works fine for other pairs if you take time to find the rights combinations.
In this strategy you can change (with defaults in () ):
RSI length (28)
RSI overbought level (85)
RSI oversell level (30)
Number of bars before leaving as explain above (28)
The choice to take longs only, shorts only or both
The number of coin/token by position
The start date for backtesting
Please note that the script use a pyramiding parameter of 3 (can be changed in the first line of the script); that means that you can take up to 3 positions before closing. It lets you improve average enter price but increase the risk. 3 is the best I found to improve profit factor without expose myself too much.
This script would be better if automated because of the conditions of buy and sell.
It's only for educative purpose, not an advice to invest.
All my free scripts here : fr.tradingview.com
Leave a message and don't forget to follow me ;) !
Trend reversal strategy "muxie2" with safety SL, about 2x PFThis is a modified version of my script muxie1.
The muxie1 is more profitable in backtesting but is more risky as the stop loss is only triggered when a reversal happens and orders 2x more in reverse direction.
The current script works the same but if loss is substancial and reaches the safety stop loss then the trade is closed.
This uses 2 EMA and Stop Loss and Take Profit,
The soft stops don't fire at the precise value but only when the trend reverses
it is actually good for 1D timeframe since 2019, it was however optimised for 1min but I am not able to share scripts for 1m.
Have equivalent code for quantum zone Ftx.
Note the stops are in dollars of btc price, so this makes sense for bitcoin only.
Ema System Ajeet v1.0This is a 5 min, Trend following system
using two Ema's: 20 and 50
Probability of hitting the target is high when both Ema's are:
Rising and almost parallel, for Buying
Falling and almost parallel, for Selling
This will decrease the number of entries but probability of hitting the target is 88%
(Tested on 8 months data for FnO scrips cash on 5 mins data)
Target fixed at 1% or you can trail
SL fixed at 1% or you can take close above Ema20 as stop for buying and vice versa
I tested it on FnO stocks Nseindia with 5 mins chart, you are free to explore
-Ajeet Singh
[HTI2] Hiubris Trend Indicator 2This is the Study version of the Hiubris Trend Indicator 2 (Used for Alerts)
After testing several strategies for months and comparing them to the standard 'Buy and Hold' method, we've found the best performing strategy for BTCUSDT
We simplified it to make it more user-friendly (We've only added 1 optional exit: a % SL) and left all the inputs adjustable, so it can be optimized for ANY pair!
This is a Trend Indicator! This means that the '% Profitable Trades' is not the main focus, but catching every trend swing. When trying to catch every trend swing, naturally alot of the them might be unprofitable, especially in sideways markets. The idea behind this strategy is to catch all the significant trend movements, which are alot more profitable than all the 'sideway market' losses
This indicator is fully adjustable and matches exactly the published strategy!
The user has the option to setup alerts for all chart signals (Entries, Re-Entries, Stop-Loss)
DMT Ladder AutobotDMT Ladder Autobot Study it's unique super trend indicators that measure the volatility from the current price action with ATR recognitions and custom setting
in this version, we can find that DMT Autbot also Ladders long entry and short entry in 4 different steps you can set your calculations depending on your requirements and pair volatility calculations
to recover your entry DMT will turn loosing trading into winning trades with the right risk management.
1 long signals
4 ladder Long add signals
1 short signals
4 ladder short add signals
1 dynamic stop calculated from your average entry price
1 dynamic take profit calculated from your average entry price
Please pm me for access or larger explanations about the script or for full pdf tutorial
thx for your support
@Shenlong
KUNDALINiThis is the STudy Version of The Kundalini is a technical indicator. Based on algorithm calculations, this indicator extrapolates the previous price for the next bar. Plus addition Multi time frame ATR volatility Reading environment for higher conditions
Here is how Dominator is calculated:
1. The study estimates the price projected for the next bar. The estimated price is based on the algorithm method.
2. The study extrapolates this value to find a projected price change for the next bar.
The resulting extrapolated value is shown as a histogram on a lower subgraph. By default, sections of the histogram where the extrapolated value is increasing are shown in green; sections corresponding to the decreasing value are shown in red.
Note: Value projection is purely mathematical as all calculations are based on algorithm averaging of previous values.
additional volatility models clouds on blue and red for bearish and bullish markets
Overlay True
The strategy includes 3 different adjustable levels for the ladder , plus automatic adjustable stop loss and takes profit calculated from your average entry price after each ladder adds.
Adjustable BAcktest Window.
1 long signals
3 ladder long add signals
1 short signals
3 ladder short add signals
1 dynamic stop calculated from your average entry price
1 dynamic take profit calculated from your average entry price
Please Private Msg me if you like more info about the script Full pdf available or if you need access to it
thx for your time and support
TS - Trading Algorithm - StrategyStrategy to the bespoke TS - Trading Algorithm . Highly profitable cryptocurrency trading model.
Access to both the backtesting strategy & indicator is paid - PM me for details.
Indicator does not repaint and has no discretionary approach - you can follow blindly and take advantage of the performance.
Self-Adjusting Parabolic SARWhat is this tool?
This is an implementation of the well-known Parabolic SAR indicator that can adjust parameters on the fly to achieve a better profitability.
The algorithm was borrowed from Profitable Parabolic SAR and connected to the basic Parabolic SAR implementation. So, now it will switch parameters automatically without any manual work required.
Profitable Parabolic SAR indicator can be found here:
Parabolic SAR indicator can be found here:
Moving Averages (Self-Adjusting Param for Highest Profitability)Moving Averages (Self-Adjusting Parameters for Highest Profitability)
It is a dual moving average crossover system - Smart Moving Averages .
Moving averages are used to identify current price developments and the potential for a change in an established trend.
The crossover in a dual moving average system can be used as a trigger to buy or to sell an asset, or as a trend reversal indication.
The crossover occurrence depends on the periods for which the moving averages are calculated. Using constant period values may not bring the best results.
The Smart Moving Averages change their periods automatically to get the highest profitability .
The concept is similar to the Smart SuperTrend .
Features:
• Self-Adjusting Period parameters
• The graphs for Profitability, Moving Average 1 Period, Moving Average 2 Period and the Moving Averages themselves are available to choose for display from the indicator settings
• A chart layout can be made just for the Smart Moving Averages, having all the graphs nicely displayed
• Alerts for changes in Trend, Moving Average 1 Period, Moving Average 2 Period, Profitability
• Different types of Moving Averages are available to choose from in the indicator settings (SMA, EMA, RMA, WMA, VWMA, DEMA, TEMA, HullMA, TMA).
The range for Moving Average 1 Period, Moving Average 2 Period and Time can be changed in the indicator settings (suggested optimal values are displayed on the chart).
This affects the loading speed (smaller range, faster to load), as well as the accuracy of the signals.
The indicator switches to the most profitable Moving Average 1 Period and Moving Average 2 Period parameters automatically, in real-time.
It scans across the entire historical data made available by TradingView.
The Smart Moving Average system works on all timeframes and symbols available on TradingView.
Exception for when the Volume Weighted Moving Average is used - it doesn't work for symbols without volume data.
It does not repaint!
But several aspects must be considered:
- 1. TradingView periodically removes access to old data while giving access to new data in real-time.
____ The frequency depends on the timeframe, amount of data. It can happen daily for second charts, weekly for minute charts.
____ Since the Indicator wouldn't have access to that old data anymore, the Profitability may change its value, causing a certain degree of repainting.
- 2. The starting time for Backtest must be inserted in the settings panel.
____ As long as the starting time has available price data, the Smart Moving Averages will NOT get repainted.
____ A suggested starting date for the analysis is shown on the chart. Insert the date in the indicator settings.
This indicator is compatible with the Wrapper Module of the Risk Management System indicator, which means they can work together as a trading bot.
SuperTrend (Self-Adjusting Parameters for Highest Profitability)SuperTrend (Self-Adjusting Parameters for Highest Profitability)
The SuperTrend is a trend-following indicator.
It works best when it is used along with other indicators.
It performs well in trending markets and can give false signals in volatile markets.
It becomes Smart when its Multiplier and Period parameters are automatically detected .
• Self-Adjusting Multiplier and Period parameters
• The graphs for Profitability, SuperTrend Multiplier, SuperTrend Period and the SuperTrend itself are available to choose for display from the indicator settings
• A chart layout can be made just for the Smart SuperTrend, having all the graphs nicely displayed
• Alerts for changes in Trend, Multiplier, Period, Profitability
The range for Multiplier, Period and Time can be changed in the indicator settings.
This affects the loading speed (smaller range, faster to load), as well as the accuracy of the signals.
The indicator switches to the most profitable Multiplier and Period parameters automatically, in real-time .
It scans across the entire historical data made available by TradingView.
The Smart SuperTrend works on all timeframes and symbols available on TradingView.
It does not repaint!
But several aspects must be considered:
- 1. TradingView periodically removes access to old data while giving access to new data in real-time.
____ The frequency depends on the timeframe, amount of data. It can happen daily for second charts, weekly for minute charts.
____ Since the Indicator wouldn't have access to that old data anymore, the Profitability may change its value, causing a certain degree of repainting.
- 2. The starting time for Backtest must be inserted in the settings panel.
____ As long as that starting time has available price data, the SuperTrend will NOT get repainted.
____ A suggested starting date for the analysis is shown on the chart. Insert the date in the indicator settings.
This indicator is compatible with the Wrapper Module of the Risk Management System indicator, which means they can work together as a trading bot .
Ultimate Pullback StrategyWhat is the Ultimate Pullback Strategy?
This strategy script is based on my Ultimate Pullback Indicator which detects pullback trading opportunities by analyzing price action in a very specific manner.
By combining simple trend filters with various advanced candlestick patterns it detects high-probability trend-continuation setups (and optional exits).
If you use this script to set alerts then you will never miss a pullback trading opportunity ever again!
I personally use this indicator to profitably trade pullback signals in the forex markets on multiple timeframes, from the 15-Minute chart to the 4-Hour and Daily chart.
Note: This strategy companion script is only available for subscribers of The Ultimate Pullback Indicator.