> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# Wiseman Awesome Oscillator

## Description

The Wiseman Awesome Oscillator is a momentum indicator to identify trends and reversals. This indicator was provided by Profitunity: \<[http://www.profitunity.com>](http://www.profitunity.com>)

## Syntax

`WisemanAwesomeOscillator()`

`WisemanAwesomeOscillator(ISeries\<double\> input)`

## Return Value

* **double**; Accessing this method via an index value `[int barsAgo]` returns the indicator value of the referenced bar.

## Parameters

* input

* Indicator source data ([Series\<T>](/developer/desktop-sdk/references/common/iseriest/seriest))

## Examples

```csharp
// Prints the current value of the Wiseman Awesome Oscillator
double value = WisemanAwesomeOscillator()[0];
Print("The current Wiseman Awesome Oscillator value is " + value.ToString());
```