Like the video? Support my content by checking out Interactive Brokers using the link below: www.interactivebrokers.com/mkt/?src=ptlPY1&url=%2Fen%2Findex.php%3Ff%3D1338 Source Code: github.com/hackingthemarkets/supertrend-crypto-bot Buy Me a Coffee: buymeacoffee.com/parttimelarry Sign Up For TradingView: www.tradingview.com/gopro/?offer_id=10&aff_id=22256 Sign Up For Binance: accounts.binance.us/en/register?ref=35201287
thx for the explaining but how safe is it, i mean Security and so on ? you have some advise ? after a year how would you rate the program is it still good or is it not what you thought it would be?
place is packed out, the air is electric, the music cuts out, all eyes down centre. he walks out, friendly lil wave, "hey everyone welcome back..", the Madison Square Gardens crowd just starts fucking losing it, 129dB of "LARRY!!! LARRY!! LARRY!!!", flower bouquets and bras streaming down from the cheap seats
Another quality series! I love that your videos are full length features from beginning to end and you don't gloss over the details. Really great job at presenting the material, and I'm definitely going to give CCXT and Binance a try.
I almost rarely comment on youtube video, however your videos rocks!👍🏻 After manual paper trading with several coins I found out that this supertrend strategy works fine when using timeframe at least 1 hour. My recommendation for entry is (ATR/Current price)* 100 > 1 (meaning at least we could get 1% increase and of course the trend already switched from down to up. As for exiting, we need to keep track of ATR, when current ATR > previous ATR AND current candle is red (down), exit on next open (somehow suggest the trend is up but the price is down, meaning the market is in fear)
I've seen and read multiple supertrend python code. This one is the most accurate and deeply explained. Many thanks for sharing such quality info and keep up the good work.
Finally got around to watching the last vid in this series. Love it! time to make it an executable and run it on my rasperry pi forever :) wish me luck lol
Thank you thanks, your content is super helpful. using this and combining some of your previous videos I built a webhook on TV and now doing backtesting for my RSI and MACD algorithm. you helped me a lot by getting it started.
Hi Larry. Thanks for these great videos.... always good to watch and learn. As a note if you run this code for an extended time (several hours) you might come across an error which will stop out the program. The error is "ConnectionResetError: [Errno 54] Connection reset by peer" This then triggers multiple other exceptions and stops the program. seems to be a CCXT thing.....If you're making additional videos, it might be worth noting an exception is needed to keep it running. Cheers and many thanks as always!
I just new to python and new to cyrto world too. but after watched your video i just make my own trading bot with strategy i like. Thank you very much :D
for anyone not planning to hardcode the amount you want to buy, you can do something like #I want to spend only 30 usdt amount_to_buy_in_usdt = 30 # get the recent closing price latest_closing_price = df["close"].iat[-1] # calculate, how much of the cypto, you can get with 30usdt excluding exchange fees quantity = amount_to_buy_in_usdt / latest_close_price # buy the cypto order = exchange.create_market_buy_order(symbol, quantity) p.s if you are using binance, their fee is 0.10%, when selling your cypto, you might want to check if you have made 0.20% profit from the price you sold it at, this is to cover the buying and sell fee
I wanted to thank you for these videos, you explain what you are doing so well that I don't code and you've made me curious enough that I googled my way into modifying this bot into a signal that sends emails (I don't have a binance account with money in there). I was done like 5 this morning, and set it to send me signals on MATIC/USD, on the 15 min, with a 10 second refresher (It could be 30 or 60 seconds).
Good tutorial! Instead of getting rid of the warnings, a better approach would be to replace the indexing with `.loc` f.ex: df.loc[current, 'close'] = df.loc[previous, 'close']
Great Video , We are looking for the same type of video from many days that can help us to implement in real market senirio, this is very informative video , very thankful to you harry brother .
Another amazing video! With all the knowledge I'm gaining as soon as I make any money I'm definitely getting a hold of you because you deserve a large chunk. I work in IT so I know a thing or two, and you make coding look so easy it's really remarkable! I wish you all the success in the world Larry!
Thanks! Watching your channel as well. I need to do some deployment videos soon since I've been running these on the desktop. Want to try out google cloud functions, show docker deployment, and a few other things. Cheers!
Yet another great video. 👏 Would love to see it working on multiple exchanges and coins simultaneously. Maybe supply it a coin list to limit it coins you want to trade or check existing balances to populate said list?
Thanks Larry for such a great content . I learn and use your strategies in stock trading.. Just a request if you can share videos of options selling strategies like straggle , strangle or iron condor management . Once again thanks a lot I always eagerly wait for your new videos because there is always new things to learn. :)
Thanks for this video series, I am learning a lot! One downside I can foresee with this algo is in the cases when you take a position and den sell it with a very slight price increase, in that cases you may end up losing money because of the Binance commissions. Maybe an improvement could be to catalog all the good-profitable operations and the ones that ended up in less or equal money for a long period of time, what do you think?
Damn Larry, thanks for these videos my man. They are really fun to watch and makes me think about a lot of things. Could you ever do something related to cryptoanalysis with deeplearning, so you can predict the stock market :D
Hi Larry, First of all, thanks for your videos they are awesome! Just a comment, on Binance the sell function has to have the (amount bough - trading fee), otherwise it will raise an error! I would like to see in the future: - Combine more than 1 TA strategy and make a voting system for the Algo to choose to enter in a trade; - Also would be awesome to see how to put this in cloud service to run 24/7. Keep the good content. Cheers
Hi Larry nice to meet you. Amazing job broth and thanks for sharing. This is pure gold :). Is that possible to see how to integrate buy and sell signals with a telegram bot?
Awesome Video Larry !!! Could you pls also show how to put two cryptos, like BTC and ETH, in one dataframe ? So that we can trade two assets at the same time. I was struggling to do that. I found Alpaca is way more friendly. Thanks Larry ! Love you.
I love your work. Can we do this with a websocket and a list of pairs ? Think most people want to trade more than one pair. But not many examples of that around and I'd like to stream price data in as changes happen. On a strategy like this 1 min doesn't make a difference, but let's say you want to do frequent rebalancing of the account. How to do that and stay within the rate limits. That be a nice to see...
Hey, Does anyone know how to change the time zone in the timestamp column? I would like to put the CEST time zone and not the one that comes out by default Thanks
Hi Larry, I watch Binance API video and now I watch CCTX video but all the videos are do the buy and sell using QUANTITY of the coin. Could you create an video that use USDT amount to buy a coin. thanks.
Hey larry i tried converting the code to 200 ema + stochastic rsi + super trend strategy. But somewhere m making mistake. I'm not able to calculate the stochastic rsi. Can you please show me how to combine these and make a better strategy. Just small modification in code. Thanks in advance for teaching us the amazing way to make auto trading bot.
I hadn't planned on writing one from scratch - on the roadmap I am planning to try some of the other popular packages - eg. bt, vectorbt, and backtesting
thank you Sir for this tutorial, from. Philippines. but I have a question. it possible to set a computation of take profit. let say I want to sell in 1% profit.. thanks in advance
Supertrend is really a good indicator. But you don't need to trend any supertrend you see. You need to combine it with other things, so the chances that you choose a good supertrend become bigger, and better. When you buy based on the supertrend you already missed the best part where to buy, and when you sell based on supertrend, you already missed the best part where you need to sell.
Thanks Larry for this cool and entertaining tutorial! I enjoyed coding with you and will keep watching your content. Please keep sharing your knowledge with us, that is the greatest gift you can actually give to someone. Hope I can return the favor. Greetings from Germany :)
his formular is right. But somehow, the result is ATR with SMA smoothing :D but trading view use ATR with RMA smoothing. You can check this thing by look at ATR control panel. If you change RMA to SMA, you will have "the same value"
Larry please do a video on how to navigate your channel for those who are interested in algorithmic trading / quant finance especially those who are beginners in the field ! :)
Great tutorial, thank you.. I have built all according to your instructions but receive "invalid API key,IP, or permission for the action" error from Vscode. What do you think the reason might be?
Great explanation! I've been building something similar with Nodejs and your videos have been a great help. When working with realtime market data, do you think it would be better to wait for the candle to fully close before setting a buy/sell order? This would prevent the orders from triggering on wicks that go below/above the supertrend before the candle has actually closed. The downside here would be that you are "late" and the price has gone up/down a bit more than when you would have bought/sold on the initial signal.
It works good for the most part but I am having a problem with making the period anything above 60. Anything above that gives the incorrect trend and I don't know why. Also, if I input 100 as the period then I receive NaN values for the atr, upperband, lowerband, and I have the incorrect trend direction. I assume the incorrect trend direction is due to setting df['in_uptrend'] = True. Any ideas?
Like the video? Support my content by checking out Interactive Brokers using the link below:
www.interactivebrokers.com/mkt/?src=ptlPY1&url=%2Fen%2Findex.php%3Ff%3D1338
Source Code: github.com/hackingthemarkets/supertrend-crypto-bot
Buy Me a Coffee: buymeacoffee.com/parttimelarry
Sign Up For TradingView: www.tradingview.com/gopro/?offer_id=10&aff_id=22256
Sign Up For Binance: accounts.binance.us/en/register?ref=35201287
thx for the explaining but how safe is it, i mean Security and so on ? you have some advise ? after a year how would you rate the program is it still good or is it not what you thought it would be?
How can we add future function in this code or selectible ?
Every millisecond of this video is pure pure gold. I've been scared of tackling this, but now its time. Nice to meet you Larry and thank you!!!
Did you manage it and how did it go?
Hey Lazarium, i havent yet to be honest, still a bit daunting....! I have to bite the bullet and try it
@@veag687 I tried today and failed at the first step... Lmk if you manage it!
place is packed out, the air is electric, the music cuts out, all eyes down centre. he walks out, friendly lil wave, "hey everyone welcome back..", the Madison Square Gardens crowd just starts fucking losing it, 129dB of "LARRY!!! LARRY!! LARRY!!!", flower bouquets and bras streaming down from the cheap seats
This is simply the best channel about python and trading on youtube. Thank you very much for sharing, Larry
WHAT LARRY?! WISH COME TRUE. THANKS FOR TWO UPLOADS IN ONE DAY. YOU DA MAN
Another quality series! I love that your videos are full length features from beginning to end and you don't gloss over the details. Really great job at presenting the material, and I'm definitely going to give CCXT and Binance a try.
Thanks man!
I almost rarely comment on youtube video, however your videos rocks!👍🏻 After manual paper trading with several coins I found out that this supertrend strategy works fine when using timeframe at least 1 hour. My recommendation for entry is (ATR/Current price)* 100 > 1 (meaning at least we could get 1% increase and of course the trend already switched from down to up. As for exiting, we need to keep track of ATR, when current ATR > previous ATR AND current candle is red (down), exit on next open (somehow suggest the trend is up but the price is down, meaning the market is in fear)
hey can u explain me more pls ?
Thanks for sharing. I also made high winning rate RSI strategy with CCXT.
Thanks, Larry! Appreciate all you do!
I've seen and read multiple supertrend python code. This one is the most accurate and deeply explained. Many thanks for sharing such quality info and keep up the good work.
Many Thanks Larry
Finally got around to watching the last vid in this series. Love it! time to make it an executable and run it on my rasperry pi forever :) wish me luck lol
do you have an update for this ?
very cool, i only heard of cctx from your tutorials, thanks larry!
Thank you thanks, your content is super helpful. using this and combining some of your previous videos I built a webhook on TV and now doing backtesting for my RSI and MACD algorithm. you helped me a lot by getting it started.
Thanks Larry . Much awaited one. And great video as usual.
Hi Larry. Thanks for these great videos.... always good to watch and learn. As a note if you run this code for an extended time (several hours) you might come across an error which will stop out the program. The error is "ConnectionResetError: [Errno 54] Connection reset by peer" This then triggers multiple other exceptions and stops the program. seems to be a CCXT thing.....If you're making additional videos, it might be worth noting an exception is needed to keep it running. Cheers and many thanks as always!
Thanks Larry! I love this channel!!!
I just new to python and new to cyrto world too. but after watched your video i just make my own trading bot with strategy i like. Thank you very much :D
for anyone not planning to hardcode the amount you want to buy, you can do something like
#I want to spend only 30 usdt
amount_to_buy_in_usdt = 30
# get the recent closing price
latest_closing_price = df["close"].iat[-1]
# calculate, how much of the cypto, you can get with 30usdt excluding exchange fees
quantity = amount_to_buy_in_usdt / latest_close_price
# buy the cypto
order = exchange.create_market_buy_order(symbol, quantity)
p.s
if you are using binance, their fee is 0.10%, when selling your cypto, you might want to check if you have made 0.20% profit from the price you sold it at, this is to cover the buying and sell fee
I wanted to thank you for these videos, you explain what you are doing so well that I don't code and you've made me curious enough that I googled my way into modifying this bot into a signal that sends emails (I don't have a binance account with money in there). I was done like 5 this morning, and set it to send me signals on MATIC/USD, on the 15 min, with a 10 second refresher (It could be 30 or 60 seconds).
Good tutorial! Instead of getting rid of the warnings, a better approach would be to replace the indexing with `.loc` f.ex: df.loc[current, 'close'] = df.loc[previous, 'close']
Lary , man , your channel is amazing !! Thanks a lot for such a great content
Great Video , We are looking for the same type of video from many days that can help us to implement in real market senirio, this is very informative video , very thankful to you harry brother .
Appreciate you Larry, great content as usual!
That was amazing, thank you! 🤓🤑
You've saved me so much time with the guidance you've provided here. Thanks!
thank you for new Knowledge !
Amazing video. Thank you.
Hi Larry, I have almost watched all of your trading bot videos from start to finish, I appreciate your amazing work.
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
@@spiritmoveministry4103 can you show how to use this as strategy in freqtrade?
Hi Larry, I appreciate your amazing work ^^
wow 2 videos in a day.
Another amazing video! With all the knowledge I'm gaining as soon as I make any money I'm definitely getting a hold of you because you deserve a large chunk. I work in IT so I know a thing or two, and you make coding look so easy it's really remarkable! I wish you all the success in the world Larry!
You change address ' Buy Me a Coffee' to RUclips ;) Thx again for your videos
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
Good series, thank you for including the code. Going to play around with this and a few other indicators!
Thanks! Watching your channel as well. I need to do some deployment videos soon since I've been running these on the desktop. Want to try out google cloud functions, show docker deployment, and a few other things. Cheers!
Thank you so so so so much Larry.
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
Thanks
Many many thanks for the unique content. I have learned a lot from you. Just keep it up please :))
I love your content, I am learning a lot even with the difficulty of the different language, I am Brazilian :D
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
i really like your videos, easy to understand:)
Yet another great video. 👏 Would love to see it working on multiple exchanges and coins simultaneously. Maybe supply it a coin list to limit it coins you want to trade or check existing balances to populate said list?
Great video, thanks for your help!
❤️
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
Bravo !
Appreciate!!! and very good work
Amazing series. Thanks bro you're the goat!
@@spiritmoveministry4103 bad bot
Keep it up KING !
Thanks Larry for such a great content . I learn and use your strategies in stock trading.. Just a request if you can share videos of options selling strategies like straggle , strangle or iron condor management . Once again thanks a lot I always eagerly wait for your new videos because there is always new things to learn. :)
Thanks for this video series, I am learning a lot!
One downside I can foresee with this algo is in the cases when you take a position and den sell it with a very slight price increase, in that cases you may end up losing money because of the Binance commissions.
Maybe an improvement could be to catalog all the good-profitable operations and the ones that ended up in less or equal money for a long period of time, what do you think?
Damn Larry, thanks for these videos my man. They are really fun to watch and makes me think about a lot of things. Could you ever do something related to cryptoanalysis with deeplearning, so you can predict the stock market :D
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
very cool man
Hi Larry,
First of all, thanks for your videos they are awesome!
Just a comment, on Binance the sell function has to have the (amount bough - trading fee), otherwise it will raise an error!
I would like to see in the future:
- Combine more than 1 TA strategy and make a voting system for the Algo to choose to enter in a trade;
- Also would be awesome to see how to put this in cloud service to run 24/7.
Keep the good content.
Cheers
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
Thanks Larry, is it possible to run strategy optimization parameters in Python? If so, could you teach us? Thank you so much again!
How to make cctx future market....buy or sell....and with leverage????.....and the vídeo is awesome💥💥💥🥳🥳
Thank you ^^
thank you soo much this well help me
Thanks for this content!
It would be phenomenal if you could backtest SuperTrend with backtrader! Or at least show how to backtest custom indicators!
Spectacular Larry. Is it possible add during downtrend operate margin with a short trade?
in this way you win always during up and down
Hi Larry nice to meet you. Amazing job broth and thanks for sharing. This is pure gold :). Is that possible to see how to integrate buy and sell signals with a telegram bot?
Awesome Video Larry !!!
Could you pls also show how to put two cryptos, like BTC and ETH, in one dataframe ? So that we can trade two assets at the same time.
I was struggling to do that. I found Alpaca is way more friendly.
Thanks Larry ! Love you.
How did I not know about CCXT ? :O Thanks for the heads up
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
I love your work. Can we do this with a websocket and a list of pairs ? Think most people want to trade more than one pair. But not many examples of that around and I'd like to stream price data in as changes happen. On a strategy like this 1 min doesn't make a difference, but let's say you want to do frequent rebalancing of the account. How to do that and stay within the rate limits. That be a nice to see...
Hey,
Does anyone know how to change the time zone in the timestamp column?
I would like to put the CEST time zone and not the one that comes out by default
Thanks
how would this logic look with javascript
Hey Larry how can we implement it in Futures? Short on DownTrend and Long on UpTrend?
Do you have a solution for this?
best channel ever
Great stuff bro! Thank you
Hi Larry, I watch Binance API video and now I watch CCTX video but all the videos are do the buy and sell using QUANTITY of the coin. Could you create an video that use USDT amount to buy a coin. thanks.
great video Thank you!
Hey larry i tried converting the code to 200 ema + stochastic rsi + super trend strategy. But somewhere m making mistake. I'm not able to calculate the stochastic rsi. Can you please show me how to combine these and make a better strategy. Just small modification in code. Thanks in advance for teaching us the amazing way to make auto trading bot.
Very nice thanks!
Hi, what if I’d like to do it with forex? What broker should I use? Which library instead of CCTX should I use?
Hey Larry. Any thoughts on a tutorial on how to write a full fledged backtesting engine one day?
I hadn't planned on writing one from scratch - on the roadmap I am planning to try some of the other popular packages - eg. bt, vectorbt, and backtesting
@@parttimelarry it would be great if u can do some in-depth videos on bt
late to the party, but I am trying to set this up via alpaca paper api. CCXT states they support it, but the documentation does not give any examples
⭐❤
It is very nice series. Thank you.
How can i create order with stop-loss and take-profit in kucoin with ccxt?
Love the video, but very much struggling to implement a supertrend indicator into backtrader, how would I go about doing this?
Amazing video. How about fx trading bot? And set in lower 1 minute chart: 15 second, 30 second,..
thank you Sir for this tutorial, from. Philippines.
but I have a question. it possible to set a computation of take profit. let say I want to sell in 1% profit.. thanks in advance
Hi Larry! Thank you for tutorial. What editor do u use for phyton script on MacOs? Is this visualstudio?
U r the best
Supertrend is really a good indicator.
But you don't need to trend any supertrend you see.
You need to combine it with other things, so the chances that you choose a good supertrend become bigger, and better.
When you buy based on the supertrend you already missed the best part where to buy, and when you sell based on supertrend, you already missed the best part where you need to sell.
Sir how can we set this strategy for multiple symbols ?
Appreciate you Larry, great content as usual! For rsi bollinger and supertrend, how should we go about setting all coins to the purchase limit?
is anyone getting out of range errors when attempting to pull the candles?
I found an exception "binanceus does not have market symbol ETH/EUR" ??
Sir how can we run multiple symbols in this programme
Please help me out
How come we don't use TensorFlow here out of interest?
Thanks Larry for this cool and entertaining tutorial! I enjoyed coding with you and will keep watching your content. Please keep sharing your knowledge with us, that is the greatest gift you can actually give to someone. Hope I can return the favor. Greetings from Germany :)
Me too
Grüße aus FFM
How come when I run it, it's stuck at 'already in position, nothing to do'?
How could I adjust this for robinhood?
wheres is the closing of the positions?
Larry great video. It would be great if you expand this code to bulk back test this strategy for multiple stocks.
is anyone elses bot not showing the same value for the upper and lower band when compared to trading view?
his formular is right. But somehow, the result is ATR with SMA smoothing :D
but trading view use ATR with RMA smoothing. You can check this thing by look at ATR control panel. If you change RMA to SMA, you will have "the same value"
Is there a benefit to using schedule instead of crontab?
Larry please do a video on how to navigate your channel for those who are interested in algorithmic trading / quant finance especially those who are beginners in the field ! :)
You are right, I need an intro video and some playlists on the main channel page.
Great channel. I was wondering if you could do a video specifically on making Futures orders on Binance using ccxt.
Great tutorial, thank you.. I have built all according to your instructions but receive "invalid API key,IP, or permission for the action" error from Vscode. What do you think the reason might be?
can we also plot the data on charts?
Great explanation! I've been building something similar with Nodejs and your videos have been a great help. When working with realtime market data, do you think it would be better to wait for the candle to fully close before setting a buy/sell order? This would prevent the orders from triggering on wicks that go below/above the supertrend before the candle has actually closed. The downside here would be that you are "late" and the price has gone up/down a bit more than when you would have bought/sold on the initial signal.
𝘛𝘩𝘢𝘯𝘬𝘴 𝘧𝘰𝘳 𝘺𝘰𝘶𝘳 𝘤𝘰𝘮𝘮𝘦𝘯𝘵,
𝘞𝘳𝘪𝘵𝘦 𝘮𝘺 𝘣𝘳𝘰𝘬𝘦𝘳 𝘈𝘳𝘵𝘩𝘶𝘳 𝘙𝘢𝘧𝘢𝘦𝘭 𝘈𝘺𝘣𝘢𝘳 𝘰𝘯 𝘞𝘩𝘢𝘵𝘴𝘈𝘱𝘱 𝘵𝘰 𝘦𝘢𝘳𝘯 𝘩𝘶𝘨𝘦 𝘪𝘯 𝘣𝘪𝘵𝘤𝘰𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨 𝘧𝘰𝘳,𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘢𝘳𝘦 𝘵𝘰𝘱 𝘯𝘰𝘵𝘤𝘩,𝘩𝘦'𝘴 𝘳𝘦𝘢𝘭𝘭𝘺 𝘮𝘢𝘬𝘪𝘯𝘨 𝘮𝘦 𝘩𝘶𝘨𝘦 𝘨𝘢𝘪𝘯𝘴 𝘸𝘪𝘵𝘩 𝘩𝘪𝘴 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘪𝘦𝘴 𝘪𝘯 𝘵𝘳𝘢𝘥𝘪𝘯𝘨
+1 2 5 1- 3 1 3- 3 5 3 8
It works good for the most part but I am having a problem with making the period anything above 60. Anything above that gives the incorrect trend and I don't know why. Also, if I input 100 as the period then I receive NaN values for the atr, upperband, lowerband, and I have the incorrect trend direction. I assume the incorrect trend direction is due to setting df['in_uptrend'] = True. Any ideas?