Skip to main content
The AIOKA Pine Script indicator is free on TradingView. It requires an AIOKA API key to fetch live signals. Get a free key →

What The Indicator Shows

The AIOKA Pine Script indicator overlays these signals on any BTC chart:
  • ACCUMULATE / REDUCE labels above and below candles when the Judiciary verdict flips
  • Ghost Trader entry / exit markers — gold triangles at the exact bars the internal paper-trading engine opens and closes positions
  • Regime background color — a subtle tint reflecting the current HMM regime (bull trend, low volatility, whale accumulation, etc.)
  • EMA 200 overlay — the exact 1H EMA(200) Ghost Trader uses, not a TradingView recomputation
  • Bottom info panel — a compact table in the lower-right showing:
    • Verdict
    • Confidence %
    • Dark Pool score (0-100)
    • 1H RSI
    • Ghost Trader status

Installation

1

Get a free AIOKA API key

Generate a key at api.aioka.io/v1/keys/generate. Save the value — it is shown once.
2

Open the Pine Editor on TradingView

On any chart, click Pine Editor at the bottom of the screen.
3

Paste the indicator source

Copy the source from aioka-signals.pine into the Pine Editor and click Save, then Add to chart.
4

Paste your API key

In the indicator settings, paste your key into the API Key field.

Free vs Paid Limits

TierDaily callsPer-minutePrice
Free1002$0
Basic1,00030$49/mo
Pro10,000100$199/mo
The indicator polls GET /v1/tradingview/signal once per bar close. On a 1H chart that is 24 calls/day — well inside the Free tier. On a 1m chart you will burn through 100 calls in under two hours; upgrade to Basic to stay live around the clock.

How The Data Gets Into Pine Script

Pine Script v5 cannot issue arbitrary HTTP requests, so AIOKA publishes its signals as a set of numeric symbols under the AIOKA:* namespace:
SymbolValue
AIOKA:VERDICTNumeric ruling code (-3 … +3)
AIOKA:CONFIDENCE0-100 composite confidence
AIOKA:DARK_POOL0-100 dark pool score
AIOKA:RSIBTC 1H RSI(14)
AIOKA:EMA200BTC 1H EMA(200)
AIOKA:REGIMENumeric regime code
AIOKA:GHOST0 WAITING / 1 READY / 2 IN_POSITION
The indicator uses request.security() to pull each of these series. Your API key authenticates your AIOKA publisher account so TradingView can serve the feed to your chart; the key is never transmitted from your browser to an external host.

Alerts

The indicator exposes four native TradingView alerts you can wire into your normal notification flow (email, SMS, webhook, push):
  • Ghost Trader Entered — fires at the bar Ghost opens a new position
  • Ghost Trader Exited — fires at the bar Ghost closes a position
  • Bullish Verdict Flip — fires when the verdict becomes STRONG_BUY / BUY / ACCUMULATE
  • Bearish Verdict Flip — fires when the verdict becomes REDUCE / SELL / STRONG_SELL
To enable, right-click on the chart → Add Alert → pick the condition from the AIOKA AI Signals group.

Screenshots

Screenshot placeholder — see docs.aioka.io/tradingview for latest rendering.

Troubleshooting

The indicator is waiting for the AIOKA:* feed to publish its first bar. Give it one full hour after installation.
You are polling faster than your tier allows. Switch to a higher timeframe (1H is enough for 24 calls/day) or upgrade your API key tier.
The internal Ghost Trader engine is only active on BTC. If you load the indicator on ETH / SOL / other charts the gold triangles will be quiet until the multi-asset council spec ships.