Back

DOCUMENTATION

Getting Started

Entrosight offers a powerful tool for traders to identify optimal entry zones on Solana. Connect to the platform, utilize the entry timing features, and make informed trading decisions in real time.

npm install @entrosight/client

Core Concepts

Entry Timing Analysis

A comprehensive evaluation of market dynamics to determine optimal entry points. This analysis incorporates order book shapes, recent market flow, and volatility metrics.

• Latency: Real-time updates for decision-making

• Data sources: Order books, market depth, and price action

• Recommendations: Entry zones for enhanced trading outcomes

Order Book Insights

Detailed insights into the order book shape and liquidity. These insights help traders understand where to position their entries based on market microstructure.

• Visualization: Real-time order book analysis

• Indicators: Key metrics for market depth and price zones

• Strategy: Enhanced entry strategies based on data analysis

API Endpoints

GET/v1/entry-zones/:market

Retrieve optimal entry zones for a specific market based on current market conditions.

POST/v1/subscribe

Subscribe to real-time entry zone updates for specified market conditions and trading pairs.

GET/v1/market-data/:market

Query market data and metrics that influence entry timing decisions.

POST/v1/verify-entry

Submit an entry strategy for verification against market conditions and historical data.

Integration Guide

Basic Connection

import { EntrosightClient } from '@entrosight/client'

const client = new EntrosightClient({
  apiKey: process.env.ENTROSIGHT_API_KEY,
  network: 'mainnet'
})

// Query optimal entry zones
const entryZones = await client.getEntryZones('SOL')
console.log(entryZones)

Stream Subscription

// Subscribe to entry zone updates
const stream = client.subscribeToEntryZones({
  market: 'SOL',
  filter: { volatility: 'high' }
})

stream.on('entryZone', (data) => {
  console.log('New optimal entry zones:', data.zones)
})

stream.on('error', (err) => {
  console.error('Stream error:', err)
})

Developer Notes

Rate Limits

Free tier: 100 queries/minute. Staked tier (10K+ $NTRS): 1000 queries/minute. Enterprise: Unlimited (custom $NTRS stake required).

Entry Verification

All entry strategies include metrics for verification. Client SDK verifies locally by default. Disable with verifyLocal: false to trust network data.

Error Handling

Network rejects invalid queries immediately. Failed entries return verified: false with detailed rejection reason. Always verify entry suitability.