π Telegram: https://t.me/Algotraderindia
(Custom bots, paid versions, automation, all available)
β Sample algo trading bot for Upstox
β Auto Buy/Sell demo logic
β Purely educational
β No API key required in this sample
This is a simple demo strategy:
- If price > 100 β BUY
- If price β€ 100 β SELL
You can modify it to add:
- EMA / RSI / MACD indicators
- Auto order placement
- Web automation
- Full strategy scripting
Includes:
- Live data reading
- Custom strategy coding
- Indicators
- Auto buy/sell execution
- Daily support
π© Telegram: https://t.me/Algotraderindia
(Delivery via Google Drive
print("Upstox Sample Bot Running...")
# Sample demo strategy (no API key needed)
def strategy(price):
if price > 100:
return "BUY"
else:
return "SELL"
print(strategy(120))