Version: 1.0 Date: January 22, 2026 Status: ✅ ACTIVE
NIJA supports bidirectional trading - profiting whether markets go UP or DOWN:
This capability is built-in and works across all supported tiers and most brokerages.
Entry Conditions:
Profit-Taking:
Stop Loss:
Example:
Entry: $100
Stop: $98 (2% risk, R = $2)
TP1: $102 (1.0R = +$2, 2% gain)
TP2: $103 (1.5R = +$3, 3% gain)
TP3: $104 (2.0R = +$4, 4% gain)
Entry Conditions:
Profit-Taking:
Stop Loss:
Example:
Entry: $100
Stop: $102 (2% risk, R = $2)
TP1: $98 (1.0R = -$2, 2% gain on short)
TP2: $97 (1.5R = -$3, 3% gain on short)
TP3: $96 (2.0R = -$4, 4% gain on short)
| Broker | Short Support | Margin Required | Notes |
|---|---|---|---|
| Kraken | ✅ Yes | Yes (varies) | Best for crypto shorting, low fees |
| Binance | ✅ Yes | Varies | Supports futures/margin trading |
| OKX | ✅ Yes | Varies | Full derivatives support |
| Alpaca | ✅ Yes (stocks) | Yes | Stock short selling with margin |
| Broker | Short Support | Margin Required | Alternative |
|---|---|---|---|
| Coinbase | ❌ No (spot only) | N/A | LONG only - profit on uptrends |
Important Notes:
| Tier | Long Support | Short Support | Notes |
|---|---|---|---|
| SAVER ($10-$25) | ✅ Yes | ✅ Yes* | *If broker supports it |
| INVESTOR ($100-$249) | ✅ Yes | ✅ Yes* | *If broker supports it |
| INCOME ($250-$999) | ✅ Yes | ✅ Yes* | *If broker supports it |
| LIVABLE ($1k-$5k) | ✅ Yes | ✅ Yes* | *If broker supports it |
| BALLER ($5k+) | ✅ Yes | ✅ Yes* | *If broker supports it |
Key Point: The tier system does NOT restrict long/short - it only affects position sizing and risk management.
Round-Trip Fee: ~1.4% (0.6% taker x2 + 0.2% spread)
| Position Type | TP Targets | Net Profit |
|---|---|---|
| LONG | 1.5%, 1.2%, 1.0% | +0.1%, -0.2%, -0.4% |
| SHORT | ❌ Not supported | N/A |
Round-Trip Fee: ~0.36% (0.26% taker x2 + 0.1% spread)
| Position Type | TP Targets | Net Profit |
|---|---|---|
| LONG | 1.0%, 0.7%, 0.5% | +0.64%, +0.34%, +0.14% |
| SHORT | 1.0%, 0.7%, 0.5% | +0.64%, +0.34%, +0.14% |
Round-Trip Fee: ~0.28-0.3%
| Position Type | TP Targets | Net Profit |
|---|---|---|
| LONG | 0.8%, 0.6%, 0.4% | +0.5%, +0.3%, +0.1% |
| SHORT | 0.8%, 0.6%, 0.4% | +0.5%, +0.3%, +0.1% |
By default, shorting is ENABLED if broker supports it.
To disable shorting (long-only mode):
# In .env or configuration
ALLOW_SHORT_POSITIONS=false
To enable shorting (default):
# In .env or configuration
ALLOW_SHORT_POSITIONS=true # Default
Coinbase (automatically long-only):
# Coinbase doesn't support shorting, no config needed
# NIJA will only take LONG positions on Coinbase
Kraken (enable shorting with margin):
# Kraken supports shorting with margin trading
KRAKEN_MARGIN_TRADING=true # Enable margin for shorts
Binance/OKX (enable futures/margin):
# Enable futures/margin for shorting
BINANCE_FUTURES_ENABLED=true
OKX_MARGIN_ENABLED=true
NIJA automatically detects market conditions:
Uptrend → Look for LONG entries
Downtrend → Look for SHORT entries
Sideways → HOLD (no entries)
Same for LONG and SHORT:
Same for LONG and SHORT:
Maximum Risk per Trade:
Maximum Risk per Trade: (SAME as long)
Important: Short positions have the SAME risk limits as long positions.
Pros:
Cons:
Expected Win Rate: 55-65% (bull markets), 40-50% (bear markets)
Pros:
Cons:
Expected Win Rate: 60-70% (all market conditions)
Market: BTC-USD on Coinbase
Condition: Uptrend detected
Entry: $42,000 (pullback to EMA21)
Stop Loss: $41,160 (2% below entry, swing low)
TP1: $42,840 (2% above entry, 1.0R)
TP2: $43,260 (3% above entry, 1.5R)
TP3: $43,680 (4% above entry, 2.0R)
Result: TP2 hit at $43,260
Gross Profit: +3.0% ($1,260)
Fees: -1.4% ($588)
Net Profit: +1.6% ($672) ✅
Market: ETH-USD on Kraken
Condition: Downtrend detected
Entry: $2,500 (bounce to EMA21)
Stop Loss: $2,550 (2% above entry, swing high)
TP1: $2,450 (2% below entry, 1.0R)
TP2: $2,425 (3% below entry, 1.5R)
TP3: $2,400 (4% below entry, 2.0R)
Result: TP1 hit at $2,450
Gross Profit: +2.0% ($50)
Fees: -0.36% ($9)
Net Profit: +1.64% ($41) ✅
Market: SOL-USD on Kraken
Condition: Uptrend detected
Entry: $100
Stop Loss: $98 (2% below entry)
TP1: $102 (2% above entry, 1.0R)
Result: TP1 hit at $102
Gross Profit: +2.0% ($2)
Fees: -0.36% ($0.36)
Net Profit: +1.64% ($1.64) ✅
SHORT positions require margin on most exchanges:
Recommendation:
LONG works best in:
SHORT works best in:
HOLD is best in:
Check logs for BOTH long and short entries:
# Check for long entries
grep "enter_long" nija.log
# Check for short entries
grep "enter_short" nija.log
# Check for profit-taking on shorts
grep "SHORT.*take_profit\|take_profit.*short" nija.log
Expected Output:
✅ LONG: BTC-USD entered at $42,000
✅ SHORT: ETH-USD entered at $2,500
🎯 TAKE PROFIT TP1 HIT: BTC-USD at $42,840 (LONG, PnL: +2.0%)
🎯 TAKE PROFIT TP1 HIT: ETH-USD at $2,450 (SHORT, PnL: +2.0%)
PROFIT_TAKING_GUARANTEE.md - Profit-taking works for BOTH long and shortBROKER_INTEGRATION_GUIDE.md - Broker-specific configurationsRISK_PROFILES_GUIDE.md - Tier-specific risk managementAPEX_V71_DOCUMENTATION.md - Complete strategy documentationLast Updated: January 22, 2026 Maintained By: NIJA Trading Systems Version: 1.0