Hi, again awesome video. I'm getting this error: BinanceAPIException: APIError(code=-1102): Mandatory parameter 'symbol' was not sent, was empty/null, or malformed. You know how to fix it?
@36.21 it is not updating the sqldatabase and I am getting the following error: DeprecationWarning: There is no current event loop loop = asyncio.get_event_loop()
Thank you very much for sharing us your code I am leaning a lot from your grate video's. I have couple of questions regarding the scripts. 1. Why do I have to use task scheduler to run the script? I am using Pycharm as python editor can I run it directly from the editor? 2. The first script deal with storing price data into sqlite database do I need to be concern about data size incase I let it run for long period of time ? Thanks,
Danke für die Videos, finde es sehr interessant. Habe bisher mit BOTS nicht am Hut gehabt. Ist das ganze denn generell rentabel oder machst du das zum größten Teil aus der Freud zum programmieren heraus?
A little comment. As a 'sanity check' you could plot (df.Time[1:] – df.Time[:-1]) for a given coin to see if you have dead time where you receive nothing. Because I anticipate that would be an issue, as @18:20 the data cover 4min 20sec (5min requested). When you calculate cumulative return (cumret), it is just (prices[-1]/prices[0] – 1).
Hi friend I love your videos, thanks for sharing your knowledge, I'm just starting to build my first projects and your content is like gold. 👏👏 I have a problem when I try to sell some coin for the first time due to the trade commission, for example I buy 0.8 some pair and the commission is 0.0008 so my real qty bought is 0.7992, when I try sell my qty I don't have the full qty and gives me an error. How you do it to don't have this problem?
ich habe mir vor ein paar Wochen einen Bot gekauft, nun habe ich eine geniale Idee, kann aber selbst nicht programmieren, falls du Interesse hast können wir ja mal sprechen. beste Grüße Daniel
Hi, grat job and thanks for sharing! Do you think it is possible to test the bot on historical data to check how it would have performed on that selected period of time? It could be useful to avoid big mistake (!) or to test different buy/sell criteria even if, of course, it will not guarantee the same performance on the future data!
Hi! very inspiring video! Can you help to answer that how can I set a time sleep like 1sec to make sure a constraint my data point density(granularity)?
Hi, thanks for the videos! Really useful! I have a question: I'm Getting "RuntimeError: Event loop stopped before Future completed." This error appears after the first loop. Do you know why?
thank so much for one more video. but could you tell me how you can buy and sell the same quantity? when I bought some crypto I lose a little bit quantity because the taxes but you don't.
But Is there any way that I can make it trade within seconds
Woww thanksss you maann
Hi, again awesome video. I'm getting this error: BinanceAPIException: APIError(code=-1102): Mandatory parameter 'symbol' was not sent, was empty/null, or malformed.
You know how to fix it?
@36.21 it is not updating the sqldatabase and I am getting the following error:
DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
Hello Is there a github repo for this project?
Thank you very much for sharing us your code I am leaning a lot from your grate video's. I have couple of questions regarding the scripts. 1. Why do I have to use task scheduler to run the script? I am using Pycharm as python editor can I run it directly from the editor? 2. The first script deal with storing price data into sqlite database do I need to be concern about data size incase I let it run for long period of time ? Thanks,
How to close all open positions in Binance kindly help
Danke für die Videos, finde es sehr interessant. Habe bisher mit BOTS nicht am Hut gehabt. Ist das ganze denn generell rentabel oder machst du das zum größten Teil aus der Freud zum programmieren heraus?
Thank you for this amazing project,,,,can you please give the source,,,same as the one the video,,,so we can just use it directly
Thanks for your great work.
A little comment. As a 'sanity check' you could plot (df.Time[1:] – df.Time[:-1]) for a given coin to see if you have dead time where you receive nothing. Because I anticipate that would be an issue, as @18:20 the data cover 4min 20sec (5min requested).
When you calculate cumulative return (cumret), it is just (prices[-1]/prices[0] – 1).
Hi friend I love your videos, thanks for sharing your knowledge, I'm just starting to build my first projects and your content is like gold. 👏👏
I have a problem when I try to sell some coin for the first time due to the trade commission, for example I buy 0.8 some pair and the commission is 0.0008 so my real qty bought is 0.7992, when I try sell my qty I don't have the full qty and gives me an error. How you do it to don't have this problem?
Vielen Dank für deine Videos,
ich habe mir vor ein paar Wochen einen Bot gekauft, nun habe ich eine geniale Idee, kann aber selbst nicht programmieren, falls du Interesse hast können wir ja mal sprechen. beste Grüße Daniel
Thanks
Sory mate, there is a video explaining how to run the script in the task scheduler??
Can we use these bots with us?
Hi, grat job and thanks for sharing! Do you think it is possible to test the bot on historical data to check how it would have performed on that selected period of time? It could be useful to avoid big mistake (!) or to test different buy/sell criteria even if, of course, it will not guarantee the same performance on the future data!
You are the BOOOOSSSSS !!! thanks a lot for sharing your knowledge, one question …. is it possible to add a filter for volume ?
keep it up !!! 🙂
Hi! very inspiring video!
Can you help to answer that how can I set a time sleep like 1sec to make sure a constraint my data point density(granularity)?
Hi, thanks for the videos! Really useful!
I have a question: I'm Getting "RuntimeError: Event loop stopped before Future completed." This error appears after the first loop. Do you know why?
Amazing job, but why dont you just set take profit and stop loss when you are buying, directly using Binance Algo orders?
Hy, great video, thanks for it!
It works great when I run the script manually but when I try to run it from task scheduler i got this error:
"max() arg is an empty sequence" (win10 x64)
Can You help me in this case?
Thanks!
can you add the links u mentioned in the description? pls
thank so much for one more video.
but could you tell me how you can buy and sell the same quantity? when I bought some crypto I lose a little bit quantity because the taxes but you don't.
how can ı get only leverage tokens ?
Hey mate! Wondering why you did the product of the percentage change instead of the percentage change of the first and last of the range?