Skip to content

Commit

Permalink
feat(WMA): Add WMA to moving average types (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
bennycode committed May 8, 2024
1 parent 0872d13 commit a0bc570
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/MA/MovingAverageTypes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type {EMA, FasterEMA} from '../EMA/EMA.js';
import type {FasterWSMA, WSMA} from '../WSMA/WSMA.js';
import type {FasterSMA, SMA} from '../SMA/SMA.js';
import type {FasterWMA, WMA} from '../WMA/WMA.js';

export type MovingAverageTypes = typeof EMA | typeof SMA | typeof WSMA;
export type FasterMovingAverageTypes = typeof FasterEMA | typeof FasterSMA | typeof FasterWSMA;
export type MovingAverageTypes = typeof EMA | typeof SMA | typeof WMA | typeof WSMA;
export type FasterMovingAverageTypes = typeof FasterEMA | typeof FasterSMA | typeof FasterWMA | typeof FasterWSMA;

0 comments on commit a0bc570

Please sign in to comment.