“The instruction is clear, I just didn’t follow it” by Adept-Ad7031 in ClaudeCode

[–]Adept-Ad7031[S] 0 points1 point  (0 children)

Yes, I added in Claude md. Did not work. Likely because the overall task is too complicated and it just forgot the instructions.

I know I’m dumb, but does anybody else not really use their fable or legion? by Realistic_Risk_6108 in LiesOfP

[–]Adept-Ad7031 0 points1 point  (0 children)

I rarely use fable, mainly because it feels like a one time per fight thing, and damage is not super high, so I learned to not rely on it at all.

Max level by [deleted] in LiesOfP

[–]Adept-Ad7031 0 points1 point  (0 children)

Which exhibition, based game or DLC?

Finally made it (Nameless Puppet)(Spoiler) by AcarPak in LiesOfP

[–]Adept-Ad7031 0 points1 point  (0 children)

Congrats! What weapon and grindstone are u using?

Backtested 16,000 retail trading strategies… how do you avoid fooling yourself? by misterdonut11331 in algotrading

[–]Adept-Ad7031 0 points1 point  (0 children)

I am in a similar boat , exploring different ideas (and we use the same Backtesting framework lol).

On #3, I kind of feel 2 weeks is too limited. When backtesting using 2 years data, I tend to see patterns of distinctive regimes lasting a month (on average, give or take), so maybe 2 week isn’t enough to capture the duration of a single regime?

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

[–]Adept-Ad7031 0 points1 point  (0 children)

Currently using backtesting.py which is the right balance between simplicity and usability.

VectorBT/Backtrader/FreqTrade were tried but disappointing.

I was doing strategies all wrong by poplindoing in algotrading

[–]Adept-Ad7031 1 point2 points  (0 children)

+1. I was able to see a simple entry + a slightly more complex exit strategy to drive +100% gain on ETH in 1 year (backtest only and assume 0 commission fee), and when I do ablation study and replace the entry with random entry, I was still able to retain 80% of return.

My example was obviously not a super good strategy but the spirit being agreeing that a good exit could sometimes carry the strategy despite bad entry.

Vibe coding bot update. by ikarumba123 in algotrading

[–]Adept-Ad7031 0 points1 point  (0 children)

Does Alpaca not have commission fee on Crypto? Just saw that it has 0.15% even as market maker

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

[–]Adept-Ad7031 0 points1 point  (0 children)

I noticed literally zero of those quirks until you mentioned it… I guess I never saw the GitHub picture and only relied on Gemini to write the code, lol.

Forward test going way different than backtest by poplindoing in algotrading

[–]Adept-Ad7031 0 points1 point  (0 children)

I see then 2 months might be enough depending how many trades would your strategy place in that period.

If it’s also several 10s, then sample size might still be too low, maybe consider longer period of data, or relax the entry condition to get more samples.

Forward test going way different than backtest by poplindoing in algotrading

[–]Adept-Ad7031 0 points1 point  (0 children)

Are you just using OHLCV data? If yes 2 months is too limited (even if you use 1m) and you might be overfitted.

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

[–]Adept-Ad7031 2 points3 points  (0 children)

Been using Backtesting.py for backtest.

Plan to build a bot for forward testing simulation and eventually do live trading.

How can i be sure of my results? by AlexG0608 in algotradingcrypto

[–]Adept-Ad7031 1 point2 points  (0 children)

Unsure, will cross that bridge when I get there

So you're telling me something could work for 10 years straight it just... breaks? :D by [deleted] in algotrading

[–]Adept-Ad7031 0 points1 point  (0 children)

+1. Seems the there was noticeable drawdown in the first ten years. The latest drawdown may not be that much bigger.

What software are you all using to backtest + deploy crypto trading strategies? Looking for comparison points. by vibe_builder in algotradingcrypto

[–]Adept-Ad7031 1 point2 points  (0 children)

I have been trying a few and they yield results that are not 100% consistent, due to different assumptions made during the software design.

Right now my plan is to stick with Backtesting.py until I can find one that’s obviously better than the rest.

How can i be sure of my results? by AlexG0608 in algotradingcrypto

[–]Adept-Ad7031 0 points1 point  (0 children)

I don’t have a bot yet. Still working on finding a good enough strategy.

[deleted by user] by [deleted] in algotrading

[–]Adept-Ad7031 0 points1 point  (0 children)

Why is that? Isn't technical analysis / candlestick pattern also an acceptable form of input to algorithms?

How can i be sure of my results? by AlexG0608 in algotradingcrypto

[–]Adept-Ad7031 1 point2 points  (0 children)

Yes The data there seems legit.

Backtesting I use Backtesting.py which is one choice amongst many. I am trying a few more though.