
Closed
Posted
Paid on delivery
Project Description — NIFTY 50 F&O Stock Options: 09:15 CE/PE Imbalance & Tick-by-Tick Monitoring Engine I am looking for an experienced algo-trading developer to implement a real-time CE/PE Imbalance Strategy for NIFTY 50 F&O individual stocks. The strategy is based on two distinct stages: 1. 09:14:50 Reference Capture For each NIFTY 50 F&O stock, determine the ATM strike at approximately 09:14:50 AM and create a fixed strike-level reference map. The minimum reference framework is ATM−10 CE and ATM+10 PE, with sufficient intermediate strikes stored so that the system can continue functioning correctly when the ATM shifts during the day. The reference must be stored against the actual strike, not merely against its ATM-relative position. The original 09:14:50 reference must never be overwritten when ATM changes. 2. 09:15 First Positive Tick Entry Immediately after 09:15 AM, the system must monitor the selected CE and PE instruments tick by tick. The first qualifying positive tick: Current LTP > Previous LTP determines the initial direction. First CE positive tick → CE signal/entry First PE positive tick → PE signal/entry This initial entry must be extremely fast. It must not wait for CE_SUM, PE_SUM, Directional Strength, VWAP, OI, volume, 5-second confirmation, or any other secondary indicator. 3. Continuous Tick-by-Tick Monitoring After the initial entry, the strategy must continue with continuous, live, tick-by-tick monitoring. There must be no 5-second or 1-minute polling dependency. The current ATM of each stock must be tracked dynamically. The active calculation basket will always be: CE: ATM, ATM−1, ATM−2, ATM−3 PE: ATM, ATM+1, ATM+2, ATM+3 For every active strike, calculate its change from its own fixed 09:14:50 reference. Because these are individual stock options and option premiums are affected by price movement, theta, IV and changing moneyness, the day-long strength calculation should use a normalized percentage change, rather than simply using raw rupee LTP differences. Percentage Change = (Current LTP − Reference LTP) / Reference LTP × 100 Then calculate: CE_SUM = Sum of normalized changes of current ATM, ATM−1, ATM−2 and ATM−3 CE PE_SUM = Sum of normalized changes of current ATM, ATM+1, ATM+2 and ATM+3 PE The system must correctly remap the current ATM±3 basket whenever the stock's ATM shifts, while continuing to use the original reference LTP for each actual strike. 4. Directional Strength For dashboard/analysis purposes: Directional Strength = CE_SUM − PE_SUM Positive = CE-side dominance Negative = PE-side dominance However, this calculation must not delay the initial 09:15 entry. 5. Position Management / Reversal After the initial CE or PE entry, continuously monitor CE_SUM and PE_SUM. When the configured opposite-side reversal condition is met: CE position → Exit CE → Enter PE or PE position → Exit PE → Enter CE The reversal threshold must be configurable. 6. Technical Expectations The solution should be: WebSocket/event-driven Low latency Tick-by-tick Robust against duplicate/stale/out-of-order ticks Capable of handling multiple NIFTY 50 F&O stocks simultaneously Capable of dynamic ATM/strike mapping Properly state-managed to prevent duplicate orders Fully logged and auditable Suitable for paper trading first and subsequent live deployment
Project ID: 40655065
38 proposals
Remote project
Active 20 hours ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
38 freelancers are bidding on average ₹7,591 INR for this job

hello sir , i have 17 year experience tech industry i already built trading plateform where i use Zerodha/Alice blue/Angel/Profitmart api for trading order, buy/sell, square off possition /margin etc feature. we also did automated trading using amibroker csv file. let me know i can show you demo. i already work on many Cryptocurrency trading system . i can show you demo also and can do as per your requirement. We already Develop c# based Copy Trading software for crypto Exchange API Binance ,Bybit API and MT4 and MT5. in this software we can copy all master client Trades to All child clients. in this we also do Arbitrage trading from Binance To Bybit and Viceversa. software will use the official Binance And Bybit API. i can show demo for you. let me know your response. i have very good experience in Crypto project come on chat so that i can show my work on Crypto.. i can start work from right now
₹12,000 INR in 7 days
5.6
5.6

Hello, I can build your NIFTY 50 CE/PE Imbalance engine with the 09:14:50 ATM reference capture, first positive tick entry at 09:15, and continuous tick-by-tick monitoring over WebSocket. CE_SUM/PE_SUM will use normalized percentage change against fixed strike references, with dynamic ATM±3 remapping and configurable reversal. I can start today. I will add duplicate/stale tick guards and state locks so no order fires twice, with full audit logs for paper and live modes. Questions: 1) Which broker API, Zerodha Kite, Fyers, or another? 2) Paper trading first, then live? Looking forward to discussing further. Regards, Shayan.
₹5,350 INR in 3 days
5.3
5.3

As an adept algo-trading developer, I am well-equipped to bring your Nifty 50 F&O stock options strategy to life. My proficiency in API development, C++ Programming, Data Analysis, JavaScript, and Python align perfectly with your requirements. Moreover, my expertise in developing low-latency, real-time trading systems underpinned by efficient algorithms makes me an excellent fit for this project. I understand the importance of striking a balance between a swift initial entry and accurate continuous monitoring in an algo-trading system. I have successfully built and optimized such precise systems before. Your project entails dynamic tracking of multiple NIFTY 50 F&O stocks’ ATMs, remapping strike baskets on-the-go and calculating normalized percentage changes—all thing I’m proficient in. What sets me apart is not just my technical competence but my strategic mindset: I'll ensure your solution is "Suitable for paper trading first" so that any potential shortcomings can be identified and resolved before this strategy is actively deployed. Let's work together to leverage reliable tools and smooth up your trading processes.
₹2,000 INR in 5 days
5.4
5.4

Hi, I can build this low-latency tick-by-tick monitoring engine for your NIFTY 50 options strategy. I will implement a WebSocket-driven event loop in Python or Node.js, storing the 09:14:50 reference map in memory. The core engine will trigger instantaneous orders on the first LTP tick, continuously remapping dynamic ATM baskets to recalculate normalized CE/PE sums for immediate reversals without latency bottlenecks. I am available to start immediately. Let us connect to discuss further. cheers Nehal
₹15,000 INR in 7 days
5.1
5.1

Hi, I can build your real-time, tick-by-tick option trading engine for NIFTY 50 F&O stocks with sub-millisecond in-memory strike mapping, ultra-fast 09:15 entry, and dynamic ATM basket tracking. Technical Implementation: 09:14:50 Reference Snapshot: Capture baseline LTP at 09:14:50 AM across ATM-10 to ATM+10 CE/PE strikes. Reference prices are permanently locked to exact strike values and never overwritten when ATM shifts. 09:15 Instant Entry: Dedicated zero-overhead loop triggers immediately on the first qualifying tick (Current LTP > Previous LTP) for CE or PE without waiting for secondary indicators. Continuous Dynamic Basket Tracking: Dynamically maps the active basket (ATM to ATM-3 CE, ATM to ATM+3 PE) as spot price moves. Computes normalized percentage change: ((LTP - Ref LTP) / Ref LTP * 100) to calculate CE_SUM, PE_SUM, and Directional Strength. Position Management & Reversal: Finite state machine to handle entry, atomic square-off, and opposite-side reversal when configured imbalance thresholds trigger. Robust Low-Latency Architecture: Built with Python (asyncio/uvloop) and WebSocket feeds. Includes stale/duplicate tick filtering, paper trading mode, kill switches, and structured trade logging. Quick question: Which broker API (Zerodha, Angel One, Fyers, Shoonya, etc.) are you integrating with? I have deep experience engineering low-latency algo execution systems and can start immediately.
₹7,000 INR in 7 days
4.4
4.4

Hi, I build production algo-trading systems for equity and options markets (Python, FastAPI, real-time tick processing). This spec is well within my wheelhouse — I've implemented similar ATM-basket tracking, normalized strike-change calculations, and tick-by-tick monitoring pipelines (no polling dependency) for live trading frameworks. Key points I'd handle: True tick-by-tick feed processing (WebSocket-based, not polling) Dynamic ATM±3 basket remapping per stock while preserving each strike's original 09:14:50 reference LTP Normalized % change calc (correct handling of theta/IV drift vs raw LTP diffs) CE_SUM/PE_SUM directional strength computed without blocking the 09:15 entry logic Clean, testable module structure so position management/reversal logic (section 5) plugs in cleanly I'd like to clarify a few things before quoting: which broker/data API (Zerodha Kite, Angel One, etc.), expected stock universe size (concurrent baskets), and whether this runs as a live service or backtest-first.
₹9,000 INR in 7 days
3.9
3.9

As a seasoned AI-driven programming prodigy, I have developed multi-faceted solutions in diverse industries that necessitate the same ingenuity and nimbleness required for your Nifty 50 Algo-Trading project. Throughout my extensive career, I've built reliable AI systems with low-latency logic, event-driven functionality, and robustness against chaotic variables like duplicate data or stale information, which make your project's technical expectations a very feasible proposition for me. My proficiency in C++ and Python perfectly aligns with the requirements for implementing your real-time CE/PE Imbalance Strategy. I'm well-versed in developing solutions that don't solely rely on secondary indicators but emphasize optimal usage of primary data, just as you want for your initial direction entry. Your continuous tick-by-tick monitoring expectation neatly fits into my skill set. I understand that your project needs the ability to handle multiple F&O stocks simultaneously And lastly, my inclination towards steering projects from embryonic to full-fledged deployment makes me more than suitable to carry out paper trading tests followed by a live release smoothly. Let's bring life and automation to your trading system; it's something I specialize in!
₹2,500 INR in 3 days
4.6
4.6

The key part of your strategy is the first 09:15 tick — and I would keep that path completely independent from CE_SUM/PE_SUM and every secondary indicator. I’d build this as a WebSocket-driven, event-based engine so the first positive CE/PE tick can trigger immediately, while the normalized basket calculations run continuously in parallel. My approach: Capture the 09:14:50 ATM and store fixed reference LTPs by actual strike. Dynamically remap the ATM−3…ATM and ATM…ATM+3 baskets as ATM changes, without overwriting the original references. Process every tick through a stateful event engine with stale/duplicate/out-of-order protection. Calculate normalized CE_SUM / PE_SUM and directional strength continuously. Handle configurable reversal logic with strict position/order state management to prevent duplicate entries. Support multiple NIFTY 50 stocks concurrently, with detailed logs for paper-trading validation before live deployment. One important question: which broker/data API will provide the WebSocket ticks (Zerodha, Upstox, Angel One, Dhan, Fyers, etc.)? That determines the exact tick schema, instrument mapping, and order execution layer.
₹15,000 INR in 12 days
3.5
3.5

From Pune ( Warje ) Readymade tick setup with fyers Completed projects till now 1) Python + DhanAPI +Excel + VBA option scalping strategy 2) Python 21 EMA and 9 EMA crossover strategy on DhanAPI 3) Google sheet + FyersAPI trading 4) Google sheet + Algomojo + Upstox 5) Tradetron Banknifty option scalping strategy 6) Excel 2600 NSE 10 years data 7) Copytrading using python 8) Tradetron Supertrend + MACD Crossover Strategy 9) Dhan option chain with Greeks in Google spreadsheet via Google Appscript 10) Backtesting of Nifty options for wait and trade strategy 11) Trigger orders for Dhan Nifty options 12) Shoonya API:- Wait and trade strategy 13) Tradetron: RSI + ADX + EMA strategy 14) Python Moving avarage channel trading Algo 15) Kotak Neo: Turtle scalping strategy for options 16) Fyers Filtered option chain in Excel 17) Binance Bitcoin tradingview strategy python bot 18) Fyers Tradingview python bot 19) Dhan Python order manager I can deliver any project in Trading. Readymade setups for Python available
₹7,000 INR in 7 days
3.2
3.2

I see you need a solution for tick-by-tick monitoring of NIFTY 50 options. I have solid experience with Python and APIs that will help implement this effectively. What's your timeline for getting this project rolling?
₹2,700 INR in 7 days
2.5
2.5

When 5d projects contain many nested groups, the render engine can miss hidden geometry, leading to empty spots in the final image. I’ll clean the hierarchy, lock visible layers, and set up a test render to catch any missing elements before the full‑resolution pass. The final deliverable will include exterior and interior high-res images, the original 5d file, and a short note on lighting, material, and camera settings. A common pitfall is relying on default material presets, which can make glass and metal look flat in realistic renders. I’ll replace those presets with physically based shaders and adjust the HDRI lighting to give accurate reflections and depth. Ready to start immediately and iterate until the visuals fit your project documentation perfectly.
₹7,000 INR in 3 days
2.4
2.4

Your strategy requires a stateful real-time processing engine rather than a simple indicator script, especially because the 09:14:50 strike reference must remain immutable while the active ATM basket changes dynamically throughout the session. I would implement this as an event-driven trading engine with dedicated modules for: - WebSocket tick ingestion and sequencing - Immutable strike reference storage captured at 09:14:50 - Dynamic ATM recalculation and strike basket remapping - Tick-by-tick CE_SUM / PE_SUM computation using normalized percentage changes - Fast-path entry logic immediately after 09:15 without secondary confirmation delays - Reversal and position state management with duplicate-order protection - Full logging, replayability and audit trail The important technical challenge here is maintaining correct strike references while handling ATM shifts, stale ticks, duplicate events and concurrent updates across multiple NIFTY 50 F&O symbols. I would structure the engine with in-memory state optimized for low latency and deterministic updates, while keeping the architecture suitable for later live deployment. The first delivery can include: - Paper trading mode - Configurable reversal thresholds - Multi-symbol support - WebSocket-driven execution flow - Monitoring/dashboard metrics for CE_SUM, PE_SUM and Directional Strength - Structured logs for validation and backtesting analysis I can also help define the broker/API integration layer depending on your preferred execution platform.
₹12,500 INR in 14 days
2.3
2.3

Hi, this is a strong fit for a real-time market-data and algo-trading engine. I understand the key requirement is a low-latency, WebSocket-driven system that captures the 09:14:50 reference correctly, identifies the first qualifying positive tick after 09:15, and then continuously calculates normalized CE/PE strength while dynamically remapping the ATM basket. I can build this with an event-driven architecture covering fixed strike-level references, tick validation, dynamic ATM tracking, CE_SUM/PE_SUM calculations, configurable reversal logic, position state management, and detailed audit logging. I’d recommend Python for the strategy engine with an asynchronous WebSocket layer and Redis/PostgreSQL for state and historical data, keeping the broker/data-provider layer modular so it can be used for paper trading first and live execution later. I’ll also ensure duplicate, stale, and out-of-order ticks are handled properly and that the initial 09:15 signal is independent of secondary indicators. I can share relevant real-time trading/data-engineering work and discuss the data provider, execution environment, timeline, and milestones.
₹8,000 INR in 10 days
1.8
1.8

At GSINFOTECHH OPC, we align technology with trading strategies to provide robust and innovative solutions. Our expertise in C++, Java, JavaScript, and Python software development would ensure we deliver a dependable and performant algorithmic trading application for your Nifty 50 F&O stock options. Systematic real-time monitoring is key in the trading world, and our extensive experience in handling low-latency WebSocket/ event-driven systems allows us to precisely cater to that need. Moreover, the complexity of option premiums demands superior technical acumen, something our seasoned developers specialize in. We can design the system to use a percentage change formula that accounts for premium variation due to factors like moneyness, theta, IV, etc., instead of raw LTP differences. This normalized approach guarantees accurate analysis over an entire day’s trade. Finally, effective position management is vital to capitalize on opportunities and prevent losses. With our technical expertise and your configurable preferences, we’ll build a system that continuously monitors the CE_SUM and PE_SUM values, reversing positions skillfully when needed. The solution will be log-auditable, suitable for paper trading before going live - ensuring reliability for your algo-trading. Trust us with this project and together we can create a tech-driven edge in your trading strategies.
₹7,000 INR in 7 days
0.8
0.8

Hi, I understand the required CE/PE imbalance strategy and the tick-by-tick workflow. I can help build the backend logic, WebSocket integration, real-time data processing, strike mapping, calculations, logging and state management. I’ll first implement and test it in paper-trading mode, validate the 09:14:50 reference and 09:15 entry logic, then prepare it for live integration. I’ll keep the implementation clean, documented and easy to test.
₹1,500 INR in 1 day
0.4
0.4

Hello, I am writing to express my interest in the Nifty 50 Algo-Trading Implementation project, specifically the CE/PE Imbalance & Tick-by-Tick Monitoring Engine. With my expertise in Java, JavaScript, Python, C++ programming, financial analysis, data analysis, algorithm analysis, and API development, I am confident in my ability to successfully implement the real-time strategy required for this project. I have a proven track record of developing algorithmic trading solutions and would welcome the opportunity to contribute to this project. I am highly skilled in the technical requirements outlined and have experience working with real-time data and implementing complex trading strategies. Thank you. Sincerely, Winston
₹7,000 INR in 7 days
0.0
0.0

I'll build a production-ready tick-by-tick CE/PE imbalance engine for NIFTY 50 F&O stocks. This includes: (1) pre-market 09:14:50 ATM strike capture and reference LTP storage with dynamic strike basket remapping, (2) sub-millisecond first positive tick detection immediately after 09:15 with instant entry signals, (3) continuous WebSocket-driven tick ingestion with duplicate/stale tick filtering, (4) normalized percentage change calculations for CE_SUM and PE_SUM across the active strike basket, and (5) configurable reversal logic with state-managed position transitions and full audit logging. I'll develop this in Python with async WebSocket support, use Redis for ultra-fast state management, and include both paper-trading and live deployment modes. Ready to start immediately and deliver within 4 days.
₹1,515 INR in 4 days
0.0
0.0

Hi, I can develop your real-time CE/PE Imbalance Strategy with a low-latency, WebSocket/event-driven architecture. I understand the critical requirement of capturing fixed 09:14:50 strike-level references and executing the first qualifying positive tick after 09:15 without waiting for secondary indicators. The system will support dynamic ATM tracking, strike remapping, normalized CE_SUM/PE_SUM calculations, configurable reversal logic, and simultaneous monitoring of multiple NIFTY 50 F&O stocks. I’ll also implement robust tick/order state management, duplicate and stale-tick protection, WebSocket reconnection, complete logging, paper-trading mode, and subsequent live broker API execution. Ready to discuss your broker/API and deployment requirements.
₹7,000 INR in 2 days
0.0
0.0

I recently helped another client implement a real-time trading strategy that required precise tick monitoring and dynamic adjustments. I can help you achieve a robust, low-latency solution for the NIFTY 50 CE/PE imbalance strategy you're looking for. My approach will ensure seamless tick-by-tick monitoring and precise strike mapping, all while maintaining a fixed reference point to avoid overwriting critical data. I understand your need for a solution that is event-driven and capable of handling multiple stocks simultaneously while being fully auditable. I have 5-star reviews on similar projects. Feel free to message me for a free consultation to discuss your project further. Regards, Daniel
₹6,250 INR in 7 days
0.0
0.0

I can build this real-time NIFTY 50 F&O options trading engine in Python according to your exact requirements. Key Technical Solutions: • Precise 09:14:50 Reference Capture logic to map ATM strikes (ATM-10 CE to ATM+10 PE). • Dynamic strike storage to ensure smooth engine operations when the ATM shifts during the day. • High-performance tick-by-tick monitoring engine for real-time CE/PE imbalance calculations. • Seamless integration with your broker API (Kite, Angel One, Dhan, etc.). I will deliver clean, modular, and fully tested Python source code. Ready to start immediately!
₹1,700 INR in 5 days
0.0
0.0

Pune, India
Member since Sep 15, 2025
₹1500-12500 INR
₹1500-12500 INR
₹1500-12500 INR
₹600-1500 INR
₹600-1500 INR
$25-50 USD / hour
₹12500-37500 INR
₹150000-250000 INR
$10-30 USD
₹1800-2800 INR / hour
₹12500-37500 INR
₹120-240 INR / hour
$30-250 AUD
$250-750 USD
$2-8 AUD / hour
₹1500-12500 INR
₹12500-37500 INR
₹600-1500 INR
$25-50 USD / hour
₹1500-12500 INR
$25-50 USD / hour
$25-50 USD / hour
₹750-1250 INR / hour
$250-750 USD
₹750-1250 INR / hour