# DailyQuoteMoves

#### Description <a href="#description_114" id="description_114"></a>

This indicator shows the daily price moves of the current market, starting at the zero line each day. With this indicator you can see if the Market is currently over/under water based on the perspective of the market open. e.g. the FDAX has the character that after reaching the 100, 200, 400 level, the market has a potential to turn.

**Works only with intraday charts!**

#### Usage <a href="#usage_109" id="usage_109"></a>

```csharp
DailyQuoteMoves()
DailyQuoteMoves(IDataSeries inSeries)
DailyQuoteMoves()[int barsAgo]
DailyQuoteMoves(IDataSeries inSeries) [int barsAgo]
```

#### Return value <a href="#return-value_107" id="return-value_107"></a>

**double**

When using this method with an index (e.g. **DailyQuoteMoves**(...)\[**int** barsAgo] ), the value of the indicator will be issued for the referenced bar.

#### Parameters <a href="#parameters_99" id="parameters_99"></a>

inSeries Input data series for the indicator

#### Visualization <a href="#visualization_105" id="visualization_105"></a>

![DailyQuoteMoves](https://agenatrader.github.io/AgenaIndicator-documentation/media/DailyQuoteMoves.jpg)

#### Example <a href="#example_103" id="example_103"></a>

```csharp
//How many ticks are in between closing price of current bar and opening price of the current day? If this bar is the first of the day, the difference will be shown Open-Close of the bar
DailyQuoteMoves()[0]
```

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://indicators.agenatrader.com/standard-indicators/dailyquotemoves.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
