Skip to main content
Module

x/trading_signals/mod.ts>AO

Technical indicators to run technical analysis for Deno. 📈
Latest
class AO
Re-export
import { AO } from "https://deno.land/x/trading_signals@3.6.1/mod.ts";

Awesome Oscillator (AO) Type: Momentum

The Awesome Oscillator (AO) is an indicator used to measure market momentum. It has been developed by the technical analyst and charting enthusiast Bill Williams.

When AO crosses above Zero, short term momentum is rising faster than long term momentum which signals a bullish buying opportunity. When AO crosses below Zero, short term momentum is falling faster then the long term momentum which signals a bearish selling opportunity.

Constructors

new
AO(
shortInterval: number,
longInterval: number,
SmoothingIndicator?: MovingAverageTypes,
)

Properties

readonly
long: MovingAverage
readonly
short: MovingAverage

Methods

update(unnamed 0: HighLow): void | BigInstance