You are the only person i think i saw in youtube who has explained how to convert the trading view strategy to an automated BOT..after searching rigorously several webpages and youtube videos..i got this. Thank you so much for doing this. GOD Bless you!!!
Hey, i've been searching for this for about 2 months now. Been through alot of videos and texts on how to modify any strategy to work with the bot. yours was super helpful. Thanks for the great work! will join your discord soon.
Thank you. What is the result in the strategy tester? Any idea how I can't get drawdown when I close always in profit? I can't find any settings. Thank you for information or hint.
you can view the strategies details , on the backtester tabs there is a detailed breakdown of performance and it shows longs , shorts and both. if that is what you meant ?
thank you very much for this video, I would like that when the buy position is taken, the sell position is stopped and vice versa, how to make the bot cut the buy position when the sell position is opened and vice versa?
@@DewaldsCryptoSpace I want to use the supertrend strategy on the renko chart, when the alert messages are sent there is only the possibility of buy and sell with sl and tp, I would like in the alert message the sl of the buy becomes the sell and the sl of the sell becomes the buy
Thank you so much! I’ve been searching like crazy for this exact info on how to modify the drop down condition box on strategies! You delivered! Thanks again 👍🏼👍🏼
When I do what you say in the video until 5:10. Debugger stops me: "Undeclared identifier 'long'" and "Undeclared identifier 'short'". What do you recommend to do?
as the error say its not defined, so you need to map the Long and Short with whatever you have in your indicator that is giving the long and the short signals.
One question, Do you link your webhook directly to your broker or do you link them with a platform such as alertatron that sends the alert to your broker?
You would have to import the ticker prices for the other assets into your pine script and create new variables to define the high/low/open/close for the imported ticker. For example, if you import the BTC ticker prices, you could call them BTChigh, BTClow, etc… There is a function to import other tickers into your script. You can then plot those bars as an overlay onto your chart (I do something similar with heikenashi candles. I have a function to calculate heikenashi candles, then plot them onto my chart. This allows me to apply my strategy to the heikenashi candles, but backtester still uses the actual chart prices) Then, you would replicate your indicator function or functions but apply them to your imported ticker prices instead. For example, let’s say you are on the ETH chart and want to enter a trade when both ETH and BTC close above the EMA 20… you would have separate EMA 20s attached to both your chart price and the imported BTC price. In your strategy.entry function you would say “if close > ema20 AND BTCclose > BTCema20, then ENTER”. You get the idea…
Hey good video fam, quick question. I want to connect my personal trading account to tradingview, can i be able to get my bot on tradingview to actually take trades live on the account and not just call signals but actually enter them too?
HI , no sorry I have not seen anything similar to this for interactive brokers I do believe you can connect it directly on tradingview but think that is only for manual trading.
Just made payment at crodltrading but can't add the payment to the subscription. Receive message 'No router instance found. You should only use "next/router" on the client side of your app.' Can you assist
Hi, very informative video. I am facing 1 problem. In my strategy i have long, long exit, short and short exit signals. I used your code for strategy alerts In my case it creates an alert for long exit and short exit but if long exit or short exit condition triggers again, it again creates alert without having long and short position. In my strategy long exit and short exit has different conditions than long and short. Not reverse trades. Can you suggest anything to overcome this problem. I dont have such problem for signals but for alert it has this problem.
Oky but if it triggers a close without having a position nothing will happen or in your exit position say if strategy.avg_positions_size > 0 for example to make sure its in a trade
This is just example , im currently travelling so not at pc to give exact snippet but you can create a ticket in discord and i can assist you more in detail
@DewaldsCryptoSpace I did this and I can see the 4 alerts (buy sell exit buy exit sell) correctly in trading view but it doesn't open orders even that I copied the webhook
@@DewaldsCryptoSpace nice to know but why i haven't the option ,, open-ended alert,, and ,, function calls only,,? Is it only for Premium on tradingview or could i use it with Essential?
@@DewaldsCryptoSpace perfect mate, i did everthing what you Show in the Video and that Was only my Problem when i was confused. Thanks for the Important answer.
Crodl Lifetime Membership (Limited) - crodl.com/lifetime
🗣Discord Server - discord.gg/bwEHKx3Jkt
You are the only person i think i saw in youtube who has explained how to convert the trading view strategy to an automated BOT..after searching rigorously several webpages and youtube videos..i got this. Thank you so much for doing this. GOD Bless you!!!
Glad to hear it was helpful since its my most popular video ill definitely do more on pinescript ! Getting back into youtube 😂👍
I have resolved all my automation errors after watching this video. thanks a million😀
Glad it helped! 🙌
Hey, i've been searching for this for about 2 months now. Been through alot of videos and texts on how to modify any strategy to work with the bot. yours was super helpful. Thanks for the great work! will join your discord soon.
Great to hear that it helped. Will see you in Discord 🙌
Thank you. What is the result in the strategy tester? Any idea how I can't get drawdown when I close always in profit? I can't find any settings. Thank you for information or hint.
Drawdown is how far in the negative the position went before closing so even if you have a 100% winning strategy there will be drawdown
Thanks for the video but how to know the overview of the strategy for: only shorts or for only longs or for both
you can view the strategies details , on the backtester tabs there is a detailed breakdown of performance and it shows longs , shorts and both. if that is what you meant ?
thank you very much for this video, I would like that when the buy position is taken, the sell position is stopped and vice versa, how to make the bot cut the buy position when the sell position is opened and vice versa?
If side is buy use reversal close short and if side sell use reversal close long and that should do what you want.
@@DewaldsCryptoSpace I want to use the supertrend strategy on the renko chart, when the alert messages are sent there is only the possibility of buy and sell with sl and tp, I would like in the alert message the sl of the buy becomes the sell and the sl of the sell becomes the buy
Thank you so much! I’ve been searching like crazy for this exact info on how to modify the drop down condition box on strategies! You delivered! Thanks again 👍🏼👍🏼
Thanks 🙏 glad i could help
When I do what you say in the video until 5:10. Debugger stops me: "Undeclared identifier 'long'" and "Undeclared identifier 'short'". What do you recommend to do?
as the error say its not defined, so you need to map the Long and Short with whatever you have in your indicator that is giving the long and the short signals.
Hello is it possible to implicate this code to Chandelier Exit indicator or it has to be strategy?
The bot can automate both indicators and strategies
Such a helpful video! Keep sharing the knowledge - we appreciate it!
glad to hear it 😃
One question, Do you link your webhook directly to your broker or do you link them with a platform such as alertatron that sends the alert to your broker?
Yes you set your indicators alert to trigger the bot and the bot will trade on the exchange
hello, thanks for the video, is it possible with this way to automate strategy to include the partially close of the position like in my strategy ?
Yes you can, under close you can set the amount you want to close.
@@DewaldsCryptoSpace is this working for mt4?
@@quentinlandon1475 crypto only - bybit - blofin - bitget and binance
thank you very much bro... this thing I'm searching all over internet.. You delivered it.. thanks. a lot..
Can you code an alert that triggers once conditions across multiple assets are met ?
I am working on more features there is a new platform on the way just not posting about it since its in Beta
You would have to import the ticker prices for the other assets into your pine script and create new variables to define the high/low/open/close for the imported ticker. For example, if you import the BTC ticker prices, you could call them BTChigh, BTClow, etc… There is a function to import other tickers into your script. You can then plot those bars as an overlay onto your chart (I do something similar with heikenashi candles. I have a function to calculate heikenashi candles, then plot them onto my chart. This allows me to apply my strategy to the heikenashi candles, but backtester still uses the actual chart prices)
Then, you would replicate your indicator function or functions but apply them to your imported ticker prices instead. For example, let’s say you are on the ETH chart and want to enter a trade when both ETH and BTC close above the EMA 20… you would have separate EMA 20s attached to both your chart price and the imported BTC price. In your strategy.entry function you would say “if close > ema20 AND BTCclose > BTCema20, then ENTER”.
You get the idea…
hi could you explain how to insert long exit and short exit too
You can just duplicate the text and name them differently then add the exit condition on the alerts. Otherwise i can help in discord
Do you have any content showing how to wire Trading view UT Bot to an automated bot on an exchange?
Hi you mean the UT bot indicator ?
if so link the specific indicator and I can create it , since I think they have a few of them
Hey good video fam, quick question. I want to connect my personal trading account to tradingview, can i be able to get my bot on tradingview to actually take trades live on the account and not just call signals but actually enter them too?
The bot automates indicators on your live account yes , currently supporting bybit and bitget.
Can you turn you laptop of when this is on? and can you connect your account to a different broker and does it still work then?
Yes you can close it - currently supports Bitget and Bybit
Great video thanks! Do you know of any software that I can execute strategies for stocks with interactive broker? Thanks!
HI , no sorry I have not seen anything similar to this for interactive brokers I do believe you can connect it directly on tradingview but think that is only for manual trading.
@@DewaldsCryptoSpace thank you for your response :)
dude u earned a sub
Thanks For the Support!
Can you connect paper trading to it
Hi currently only live accounts
What if i want to make the bot trade only in certain time frame 😊
The bot automates trading indicators so whatever timeframe you set the alert on it will trade
@@DewaldsCryptoSpace ok thank you sir
Just made payment at crodltrading but can't add the payment to the subscription. Receive message 'No router instance found. You should only use "next/router" on the client side of your app.' Can you assist
HI yes are you in the discord server?
also see membership was added successfully just check your dashboard to view your membership or create a discord support ticket and ill assist.
How can I put the orders in my broker, pls?
The bot supports bybit and bitget at the moment if you want to check that out i have step by step videos on how to connect them
@@DewaldsCryptoSpace thx
Hi, very informative video. I am facing 1 problem. In my strategy i have long, long exit, short and short exit signals. I used your code for strategy alerts In my case it creates an alert for long exit and short exit but if long exit or short exit condition triggers again, it again creates alert without having long and short position. In my strategy long exit and short exit has different conditions than long and short. Not reverse trades. Can you suggest anything to overcome this problem. I dont have such problem for signals but for alert it has this problem.
Oky but if it triggers a close without having a position nothing will happen or in your exit position say if strategy.avg_positions_size > 0 for example to make sure its in a trade
This is just example , im currently travelling so not at pc to give exact snippet but you can create a ticket in discord and i can assist you more in detail
@@DewaldsCryptoSpace thank you
@@DewaldsCryptoSpace okay
Is your strategy used by lorentzian classification from machine learning ?
Can you show how to link these strategies to an OKX Bot?
the bot does not support OKX at this moment
best best best vidoe my friend all my goodness to you
thanks -> docs.crodltrading.com/docs/youtube-docs/strategy-alerts
if you want to copy the code.
where is the code text you aded?
docs.crodltrading.com/docs/youtube-docs/strategy-alerts
@DewaldsCryptoSpace I did this and I can see the 4 alerts (buy sell exit buy exit sell) correctly in trading view but it doesn't open orders even that I copied the webhook
sir how add target, stoploss
Hi , to our bot or in pine ?
how to close the deal ???
You will see there is an open and close sections or with take profit and stop loss depending on how you want to set it up
Does this requires tradingview pro?
Hi yes for the webhooks alerts to have urls you need a pro tradingview or pro free trial on tradingview
How can i do this with my take profit/stoploss?
You can add it in the syntax or use the close function with the bot
Limit order function is missing.
Yes - been requested and will
Be adding it
@@DewaldsCryptoSpace OK
@@DewaldsCryptoSpace + other complex features like a limit stop close
Could i use it for my own scripts?
Yeah thats what this video is for to show how to add it to your scripts 👌
@@DewaldsCryptoSpace nice to know but why i haven't the option ,, open-ended alert,, and ,, function calls only,,?
Is it only for Premium on tradingview or could i use it with Essential?
@@Lildeeeepa if I remember correctly its only premium yes
@@DewaldsCryptoSpace perfect mate, i did everthing what you Show in the Video and that Was only my Problem when i was confused. Thanks for the Important answer.
@@Lildeeeepa great stuff also sometimes i dont see comments here so for instant support you can always ask in Discord 👌
the code I copied doesnt work for some reason
Open a ticket on discord and ill help
Nice one Dewald, thanks for sharing this 👍
Thanks Paul💪
Can one use crodl to automate forex and stocks as well?
crypto only
Nice job as always mate 🍻
Appreciate the support as always 💪
Thanks mate.
thanks for the support!
Link Discord server dont work bro
discord.gg/bwEHKx3Jkt
Excellent man 👍
Thanks appreciate the feedback!
good video sir
Thank you 🙌
legend my friend
Thanks 🙏
what about the thumbnail
what do you mean its a tradingview strategy ?
Dankie baie !
You are welcome
Thanks bro
No problem👌
Good try but still confused
What are you confused about?
@@DewaldsCryptoSpace like my strategy script is completed different how can i set those code etc... i also tried via traderpost but faied.
He could in video at first show more about what it does and then show how to make it
Thanks for the Tip, if you are familiar with adding alerts to normal indicators then this is just a way of doing something similar with strategies.
Laaaaaaka my boet!!!!
💪
Bro i make a one pine script but I don't know how to i make automate do yo help me...? How to i contact you bro
Hi join discord and create a ticket and ill assist you
Very good content but the speed of your speech and your accent make multiple passes necessary. Please slow down and structure your sentences.
Thanks for the feedback 💪
There would be a delay?
Hi what do you mean ? Delay between?
@@DewaldsCryptoSpace between the signal given by tradingview that comes instantly and the effective trade taken on the broker/exchange
@@poetamaledetto88 there will be a second or 2 delay yes
@@DewaldsCryptoSpace does it support all exchanges supported by TV including bybit and mexc?
@@poetamaledetto88 Hi current platform supports bitget I am working on a new one to include mexc as well as binance
How to contact you
Create a support ticket in the discord I won’t dm you crodltrading.com/discord or link in description
Amazing video but YOUR CAMERA IS ON THE WAY
I love the knowledge but not your webcam
Noted 👍