SALVE....
Chiedo cortesemente chi mi aiuta a modificare la seguente formula in modo che Invece di visualizzarmi IN NERETTO UNA BARRA CHE CORRISPONDE ai massimi del gg prima.....MI visualizzi una barra ROSSA del Massimo del giorno corrente...
Grazie tante
/************************************************** **************************************************
Copyright © eSignal, a division of Interactive Data Corporation. 2002. All rights reserved.
This sample eSignal Formula Script (EFS) may be modified and saved under a new
filename; however, eSignal is no longer responsible for the functionality once modified.
eSignal reserves the right to modify and overwrite this EFS file with each new release.
************************************************** ************************************************** */
function preMain() {
setPriceStudy(true);
setStudyTitle("Prev High (PH)");
setCursorLabelName("PH");
/*
* Set the properties of the default bar. These will be the
* properties of any bar for which style, color, thickness is
* not specificed.
*/
setDefaultBarStyle(PS_SOLID);
setDefaultBarFgColor(Color.black);
setDefaultBarThickness(2);
setPlotType(PLOTTYPE_FLATLINES);
}
/*
* This is a neat formula because it is working on multiple intervals
*/
function main() {
return call("getPrevOHLC.efs", "High");
}
Chiedo cortesemente chi mi aiuta a modificare la seguente formula in modo che Invece di visualizzarmi IN NERETTO UNA BARRA CHE CORRISPONDE ai massimi del gg prima.....MI visualizzi una barra ROSSA del Massimo del giorno corrente...
Grazie tante
/************************************************** **************************************************
Copyright © eSignal, a division of Interactive Data Corporation. 2002. All rights reserved.
This sample eSignal Formula Script (EFS) may be modified and saved under a new
filename; however, eSignal is no longer responsible for the functionality once modified.
eSignal reserves the right to modify and overwrite this EFS file with each new release.
************************************************** ************************************************** */
function preMain() {
setPriceStudy(true);
setStudyTitle("Prev High (PH)");
setCursorLabelName("PH");
/*
* Set the properties of the default bar. These will be the
* properties of any bar for which style, color, thickness is
* not specificed.
*/
setDefaultBarStyle(PS_SOLID);
setDefaultBarFgColor(Color.black);
setDefaultBarThickness(2);
setPlotType(PLOTTYPE_FLATLINES);
}
/*
* This is a neat formula because it is working on multiple intervals
*/
function main() {
return call("getPrevOHLC.efs", "High");
}
Comment