QUICK SCALPER.
Manual scalping in volatile markets (like Nifty Bank) requires reflex-based execution. Most broker terminals require 3-4 clicks to place a basket order with Stop Loss and Target. By the time you click "Buy", the price has moved 20 points.
The Solution
Quick Scalper runs as a lightweight floating window on top of your charts. It features pre-configured hotkeys for instant order placement.
- 01 Preset quantity buttons (e.g., 500, 1000, 5000 qty).
- 02 Automatic OCO (One-Cancels-Other) brackets sent with every entry.
- 03 "Panic Close" button to liquidate all positions immediately.
Instant Execution
Bypass the standard order form. Pre-configured buttons (e.g., "BUY 500 QTY") send API requests instantly on click.
Auto-OCO Brackets
Never trade naked. The system automatically places a Stop Loss (e.g., 10%) and Target (e.g., 20%) the moment your entry is filled.
Panic Liquidate
Market turning against you? Hit the "PANIC" button to market-exit all open positions across all symbols instantly.
How It Works
Login
Authenticate with your broker using TOTP. The scalper loads your profile and margin data.
Select Strikes
Choose your instrument (e.g., NIFTY) and strike selection (ATM, OTM1, ITM1) from the dropdown.
Execute
Wait for your setup. Press 'CTRL+B' or click 'BUY CALL' to enter instantly with pre-calc size.
Auto-Exit
The system watches the trade. It will auto-trail your Stop Loss or exit at Target without you lifting a finger.
User Configuration
// config.json
{
"default_qty": 900,
"sl_percentage": 10.0,
"target_percentage": 25.0,
"trailing_sl_jump": 5.0,
"max_slippage_tolerance": 2.5,
"keyboard_shortcuts": {
"buy_call": "Ctrl+B",
"buy_put": "Ctrl+P",
"panic_exit": "Esc"
}
}
Fully customizable JSON configuration file included.