Skip to content

Commit

Permalink
refactor(ABANDS,BBANDS): Reorganize source code files
Browse files Browse the repository at this point in the history
  • Loading branch information
bennycode committed Sep 5, 2021
1 parent ede5086 commit 300b441
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {SMA} from '../SMA/SMA';
import Big, {BigSource} from 'big.js';
import {NotEnoughDataError} from '../error';
import {BandsResult} from './BandsResult';
import {BandsResult} from '../util/BandsResult';
import {Indicator} from '../Indicator';
import {MovingAverageTypeContext} from '../MA/MovingAverageTypeContext';
import {MovingAverage} from '../MA/MovingAverage';
Expand Down
2 changes: 0 additions & 2 deletions src/BANDS/index.ts

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Big, {BigSource} from 'big.js';
import {SMA} from '../SMA/SMA';
import {NotEnoughDataError} from '../error';
import {BandsResult} from './BandsResult';
import {BandsResult} from '../util/BandsResult';
import {Indicator} from '../Indicator';
import {getAverage} from '../util/getAverage';

Expand Down
5 changes: 3 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
export * from './ABANDS/AccelerationBands';
export * from './AC/AC';
export * from './ADX/ADX';
export * from './AO/AO';
export * from './ATR/ATR';
export * from './BANDS';
export * from './BBANDS/BollingerBands';
export * from './CG/CG';
export * from './DEMA/DEMA';
export * from './DMA/DMA';
Expand All @@ -13,10 +14,10 @@ export * from './MA/MovingAverage';
export * from './MA/MovingAverageTypeContext';
export * from './MACD/MACD';
export * from './MOM/MOM';
export * from './WSMA/WSMA';
export * from './ROC/ROC';
export * from './RSI/RSI';
export * from './SMA/SMA';
export * from './SMMA/SMMA';
export * from './STOCH/StochasticOscillator';
export * from './util';
export * from './WSMA/WSMA';
File renamed without changes.

0 comments on commit 300b441

Please sign in to comment.