Resolve "Implement action fetching for Alpaca" #31

Merged
clbertolini merged 12 commits from 14-implement-action-fetching-for-alpaca into main 2023-11-10 21:36:43 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit ab23fb7145 - Show all commits

View File

@ -2,3 +2,7 @@ export * from './interface/exchange';
export * from './interface/portfolio';
export * from './interface/quote';
export * from './interface/actions';
export * from './alpaca/exchange';
export * from './alpaca/portfolio';
export * from './alpaca/quote';

View File

@ -1,6 +1,6 @@
import { describe, expect, test } from '@jest/globals';
import 'dotenv/config';
import { AlpacaExchange } from '../src/alpaca/exchange';
import { AlpacaExchange } from '../src/index';
describe('Alpaca Tests', () => {
test('portfolio fetch', () => {