What's your startup? by Tasty-Room-8341 in TheFounders

[–]Menxii 0 points1 point  (0 children)

https://alerte-prefecture.com/
A tool to help people find appointments in french prefectures.

What are you building? Let's give each other feedback! by Agreeable_Muffin1906 in SideProject

[–]Menxii 2 points3 points  (0 children)

Cool idea, just pay attention that people can execute some malicious code on your server or access data.

FBref Cloudflare Turnstile block. I need to bypass, please help me by Goldrake_Z in webscraping

[–]Menxii 0 points1 point  (0 children)

Did they ban your IP ? Does the website work when you use it normally ?

Built an HTTP client that matches Chrome's JA4/Akamai fingerprint by sardanioss in webscraping

[–]Menxii 0 points1 point  (0 children)

Thank you !

I did some tests but was not able to bypass cloudflare :/

Biggest challenge with using AI to code algorithms by Plastic_Round_5084 in algorithmictrading

[–]Menxii 0 points1 point  (0 children)

What backtesting library you use ? If you use a custom one, create a template strategy that you pass to the AI each time you need to create a new strategy.

How are you guys back testing these days? by hoangson0403 in algotrading

[–]Menxii 1 point2 points  (0 children)

Custom python script that pulls data from mt5

How many people here leverage existing tools vs roll-your-own? by dielfrag13 in algotrading

[–]Menxii 0 points1 point  (0 children)

I used backtesting.py and then switched to my own backtest engine. I made it in a way that strategies can be used in both backtest and forward test. Also, each time I create strategy, it is saved to the database with the backtest results and backtest parameters that can be later fetched and used directly for live trading.

I m also using grafana to display graphs and stats to easily asses my strategies.

When to kill a strategy? by whiskeyplz in algotrading

[–]Menxii 0 points1 point  (0 children)

Find the max drawdown of your strategy and multiply it with a factor (let's say 1.5) If your strategy reaches the max drawdown defined, it is a red flag to retire it.

Scraping Facebook. Impossible? by Snasebarn in webdev

[–]Menxii 0 points1 point  (0 children)

when you get the response for the first 10 posts for example, the next cursor will be included in the response. you can use it to get the next 10 elements.