Announcement

Collapse
No announcement yet.

Icustom

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Icustom

    Salve a tutti, volevo usare la funzione "icustom" per estrarre i valori di alcuni indicatori in un expert; partendo dal presupposto che ho la sorgente di questi indicatori(quindi posso modificarli).
    Allego l'immagine dove nella "finestra dati" ho le variabili: buy, sell, m15 TMA band, value2 e value 3, come posso "prelevare" questi valori per usarli nell'expert?




    Attached Files

    #2

    double Buy1= iCustom(NULL,0,"nome indicatore",inputs 1,inputs 2,… ,0,1) // valore indexBuffer Buy relativo alla candela 1

    double Buy2= iCustom(NULL,0,"nome indicatore",inputs 1,inputs 2,… ,0,2) // valore indexBuffer Buy relativo alla candela 2

    double Sell1= iCustom(NULL,0,"nome indicatore",inputs 1,inputs 2,… ,1,1) // valore indexBuffer Sell relativo alla candela 1
    ecc…

    Comment

    Working...
    X