Announcement

Collapse
No announcement yet.

Informazione Sul Chart

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

  • Informazione Sul Chart

    salve chiedo informazioni su come plottare 1 linea verticale sul chart mininasd in corrispondenza delle 15:30


    grazie

  • #2
    New_trader
    Eccoti la formula
    Alex

    PHP Code:
    function preMain() {
        
    setPriceStudy(true);
        
    setStudyTitle("1530");
        
    setShowCursorLabel(false);
    }

    var 
    Cntr 0;

    function 
    main() {

        if(
    getBarState()==BARSTATE_NEWBAR){
            
    Cntr++ ;
        }

        if((
    getHour()*100)+getMinute()==1530){
        
    drawLineRelative(0,0,0,99999,PS_SOLID1Color.lightgrey,"1530"+Cntr);
        }
        
        return;

    Comment


    • #3
      GRAZIE TANTE

      Comment

      Working...
      X