File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,5 @@ export { CircularBuffer } from './src/providers/circular-buffer';
3838export { Sampler } from './src/providers/sampler' ;
3939export { VolumeProfile } from './src/volume-profile' ; /** BETA UNSTABLE */
4040export { ChaikinOscillator } from './src/chaikin' ;
41+ export { AMA } from './src/ama' ;
4142// export { OrderBlock } from './src/order-block';
Original file line number Diff line number Diff line change 11import { CircularBuffer } from './providers/circular-buffer' ;
22
3+ /**
4+ * Adaptive Moving Average (AMA) is a powerful tool that can significantly improve your trading strategy.
5+ * In this ultimate guide, I’ll walk you through everything you need to know about AMA – from its
6+ * basics to implementing it in your own trading approach.
7+ * Get ready to take your trading game to the next level!
8+ */
39export class AMA {
410 private circular : CircularBuffer ;
511 private sumNoise = 0 ;
You can’t perform that action at this time.
0 commit comments