0.0.6 • Published 7 years ago

stockbot v0.0.6

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Still under development, use with caution.

import Stockbot from 'stockbot';

async function make(){
  
    const bot = new Stockbot('demo');
    const stock = bot.stock('AAPL');
    
    const series = await stock.series('1min');
    
    const indicator = await stock.indicator('SMA', '1min', {
       time_period: 10,
       series_type: 'close',
    });
    
    //TODO
    const points = await stock.points('1min', {
      'SMA': {
        time_period: 10,
        series_type: 'close',
      }
    });
    
}
const series = await new Stockbot('demo').stock('APPL').series('1min');
0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago