Supply Demand 2.0
Indicatore tecnico per Metatrader (MT4/MT5)
-
ℹ Panoramica
L'indicatore Offerta/Domanda analizza l'andamento dei prezzi passati per anticipare la pressione di acquisto e vendita sul mercato: lo fa guardando indietro nel passato e analizzando i picchi e le valli dei prezzi intorno al prezzo attuale. È un indicatore di conferma all'avanguardia.
- Prevedi la pressione di acquisto e vendita sul mercato
- Evita di farti prendere dalla frenesia dell'acquisto e della vendita
- Nessuna impostazione e nessuna ottimizzazione necessaria
- L'indicatore funziona in tutti i tempi
- Estremamente facile da usare
I prezzi potenziali della domanda e dell'offerta sono quelli ai quali è probabile che molti partecipanti al mercato mantengano le loro posizioni in perdita, sperando di liquidarle in pareggio. Quindi c'è un'attività massiccia a questi livelli di prezzo.
- Sia l'offerta che la domanda sono quantificate come numeri
- Se l'offerta è superiore alla domanda, puoi aspettarti una pressione di vendita
- Se l'offerta è inferiore alla domanda, puoi aspettarti una pressione all'acquisto
- Cerca pantaloncini quando l'offerta è superiore alla domanda
- Cerca long quando l'offerta è inferiore alla domanda
A brief introduction
Potential supply and demand prices are those at which lots of market participants are likely to be holding their losing positions, hoping to liquidate them in the future. Unwary longs are caught at price peaks and shorts are caught at price valleys.
The indicator analyzes past price action and displays how many peaks and valleys can be found around the current price, thus accurately predicting buying and selling pressure.
Placing your trades
The PZ Supply/Demand truly needs little explanation because it has been designed to be simple, all you have to do is following these simple rules.
You should look for longs if...
- Demand is above supply
- The current price is close to the demand line
You should look for shorts if...
- Supply is above demand
- The current price is close to the supply line
Although the indicator works for all timeframes, it is recommended to confirm every trade with at least one higher timeframe. For example, if you are going to buy on the H4 timeframe, you ought to check demand is above supply at least on D1, W1 or MN1 charts.
Some trading examples
Some examples about how to use this indicator can be found below. Note that, for better results, more than one timeframe should be used.
- ?
FAQ
- Does the indicator repaint?
- Yes, it does repaint! It has to scan past price action every time the price moves one average true range unit.
- Should I take trades solely based on supply and demand?
- No, you should not. It should be used as a confirming indicator.
- What are the strong lines?
- The strong lines are the average supply and demand lines. The current price should be close to the demand line to take long trades, and close to the supply line to take short trades. You can apply this rule using a higher timeframe: for example, you can buy in the H4 chart if the price is close to the demand line in the daily or weekly chart.
- </>
Sviluppatori
Per costruire il tuo robot con questo indicatore, usa la chiamata iCustom () descritta di seguito. L’indicatore ha un buffer aggiuntivo il cui unico scopo è memorizzare eventi o segnali come costanti, in modo che sia sufficiente effettuare una chiamata all’indicatore per prendere decisioni. Copia e incolla il seguente codice nel codice sorgente del tuo robot, sostituendo il nome dell’indicatore con quello che hai ricevuto.
//---- Read value from supply and demand buffers int start() { // Read values double demand = iCustom(Symbol(), Period(), "PZ_SupplyDemand_LICENSENUM", 0, 1); double supply = iCustom(Symbol(), Period(), "PZ_SupplyDemand_LICENSENUM", 1, 1); // Do something if(demand > supply) { /* Your code if demand is above supply */ } if(demand < supply) { /* Your code if supply is above demand */ } if(demand == supply) { /* Your code is supply and demand are equal */ } // Exit return(0); }