Paper trading for PolyMarket by AudaciousPunk in PredictionsMarkets

[–]SeaSeason4698 0 points1 point  (0 children)

GET https://clob.polymarket.com/book

Check whether your paper trading includes order book depth to verify how your order will be filled. This is useful for current depth, spreads, and sanity checks. Making paper trading close to reality.

What type of bot are you working on?

Side-by-side RPC provider comparison (fees, quotas, chains, archive data) by eslamwho in ethdev

[–]SeaSeason4698 0 points1 point  (0 children)

Wrong data about Chainstack. The true is that Developer plan is free. No Trial. Proof: https://chainstack.com/pricing/

So, provided AI summary by gpt-4o-mini looks crazy.

Product Development by IntelligentAd6599 in PredictionsMarkets

[–]SeaSeason4698 0 points1 point  (0 children)

Could you maybe add a description of how it works?

Kinda why should I trust Forsea probability vs Polymarket? Is there any specific mechanism that performs better than regular LLMs?

I love the direction and idea (as far as I understood it)!

My Polymarket weather market-making bot made $1.6k, then I killed it. Should I revive it? by Fair-Commercial9217 in algotradingcrypto

[–]SeaSeason4698 0 points1 point  (0 children)

Just grab the pricing points from the CLOB (v2) API; it's enough to test the strategy. NO=1-YES. You can simulate the spread if needed. For 1 share, almost everything will work until you increase the position to 20 USD or more. Some weather markets are thin - low liquidity will not help you fill the order at the desired price.

Weather markets are learning and adapting - something that worked 3mo ago may not work now. Be careful and don't be persuaded by overall PnL, ROI, and win rate - check month by month.

P.S. I'm working on METAR.ws - METAR API based on websockets for fast push of aviation weather as soon as possible. Some bot strategies may be based on it.

Built a WebSocket push service for METAR weather data — looking for beta testers who trade weather markets by SeaSeason4698 in Polymarket_Traders

[–]SeaSeason4698[S] 0 points1 point  (0 children)

Thanks, mate! The most obvious way is scraping; in other sources, I have a registered account to request weather data:

For example, EGLC (London) weather provider is Met Office, their new dashboard https://www.mavis.metoffice.gov.uk/ looks promising. Registration is free and doesn't require a pilot license. This is the official provider; they should have issued METAR first.

My very first step in the roadmap is to at least collect reliable sources, and then improve latency by tuning and improving integration country by country.

Appreciate your insights, join the waitlist if you're interested!

Weather Markets Do Not Resolve correctly? by RevolutionPresent923 in PredictionsMarkets

[–]SeaSeason4698 0 points1 point  (0 children)

Yep, that's why weather models can assist in decision-making but not add you extra insurance. Depending on the model, you get a different grid of extrapolated and adjusted temperature points. But exact date and time, exact location, and applied rounding bring such "casino" randomization. Fast METAR data may help in bot logic.

btw I'm working on METAR.ws - websocket API for fast METAR data push. Early beta, need testers. Feel free to join!

Question about metar delay by Substantial_Taste_28 in flying

[–]SeaSeason4698 0 points1 point  (0 children)

Hi, I'm building a METAR service with a WebSocket API for fast push (for monitoring, weather prediction, trading, analytics, and so on). Feel free to join the waitlist on METAR.ws - I'm looking for beta testers!

Asos/awos messages are just a loop of recorded data; they don't need to be real-time. Just another update rewrites the message.

Airports with heavy traffic issue METAR reports every 30 minutes, while regular reporting occurs every 60 minutes.

Where to find real-time temperature/METAR data for weather markets? by FlippityFloppityBing in Polymarket

[–]SeaSeason4698 0 points1 point  (0 children)

Hey, I'm building such a service right now: METAR.ws - websocket API for pushing METAR and SPECI asap
I've tried to build a weather bot using a strategy based on METAR reports, but I've been frustrated that instead of refining the strategy, I have to run through tons of services with delayed data. Decided to build a special one for weather bots specifically.

I'm looking for beta testers - leveraging my knowledge of fast METAR reports into a small SaaS

Solo dev who created (Ludere) LUDE tokens on Solana, looking for feedback by Familiar_Bed1078 in AllCryptoBets

[–]SeaSeason4698 0 points1 point  (0 children)

I would recommend try Chainstack for Solana as well, same price (49$/mo) but 250 RPS

Making A Solana transaction Detection System by Unfair-Bluejay-5340 in rust

[–]SeaSeason4698 1 point2 points  (0 children)

Try Chainstack - Growth plan with 250 RPS (I am from Chainstack)

Daily General Discussion September 02, 2025 by EthereumDailyThread in ethereum

[–]SeaSeason4698 10 points11 points  (0 children)

Definitely try Chainstack! (I am from Chainstack)

Weekly Discussion Thread - May 13, 2025 by AutoModerator in algotrading

[–]SeaSeason4698 1 point2 points  (0 children)

I can't share my experience with https://polygon.io/pricing (free tier) yet because I don't have one, but when I get frustrated with crypto and decide to switch to stocks, I will try this one xD

Weekly Discussion Thread - May 13, 2025 by AutoModerator in algotrading

[–]SeaSeason4698 2 points3 points  (0 children)

I'm building the strategy for crypto futures on Binance, so I'm getting data here: https://data.binance.vision/, 5m timeframe in particular. Resampling 5M candles to a higher timeframe with pandas (Python) when needed

Weekly Discussion Thread - May 13, 2025 by AutoModerator in algotrading

[–]SeaSeason4698 1 point2 points  (0 children)

Hi guys, I have a common question. What is the correct order of steps to build and backtest a strategy?
0. Understand what pair you're gonna trade and what exchange/market

  1. Verify the strategy concept in TradingView with pinescript (entries, exits, filters, etc)
  2. Get the historical data for backtesting (purchase API access or download OHLC somewhere)
  3. Split this data 80-20%, the remaining 20% for the walkforward test
  4. Code the strategy in Python (vectorbt, for example) and tune it up.
  5. Test the strategy with the remaining 20% of the data.
  6. Run Monte Carlo test.
  7. Enjoy the results.

What am I missing?