JSPM

@neural-trader/neural

2.6.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 53
  • Score
    100M100P100Q102873F
  • License MIT OR Apache-2.0

Neural Trader neural network training and prediction

Package Exports

  • @neural-trader/neural
  • @neural-trader/neural/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@neural-trader/neural) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@neural-trader/neural

Neural network training and prediction for Neural Trader.

Installation

npm install @neural-trader/neural

Usage

const {
  neuralTrain,
  neuralPredict,
  NeuralTrader
} = require('@neural-trader/neural');

// Train a model
const model = await neuralTrain({
  modelType: 'lstm',
  data: trainingData,
  epochs: 100
});

// Make predictions
const prediction = await neuralPredict({
  modelId: model.id,
  input: marketData
});

// Use neural trader class
const trader = new NeuralTrader({
  modelType: 'transformer',
  features: ['price', 'volume', 'sentiment']
});

API

Classes

  • NeuralTrader - Neural trading system

Functions

  • neuralTrain() - Train neural network
  • neuralPredict() - Make predictions
  • neuralBacktest() - Backtest neural model
  • neuralEvaluate() - Evaluate model performance
  • neuralForecast() - Generate forecasts
  • neuralOptimize() - Optimize model hyperparameters
  • neuralModelStatus() - Get model status

License

MIT OR Apache-2.0