Help me! To draw the result of iSar () ?

 

How to draw the result of iSAR.... on H1, M30....?

                int Count ;
                int Bar ;
                
                Bar = iBars( NULL , 240 ) ;
                Count = Bar - 2 ;
                
                while ( Count >= 0 )
                        {
                                Sar = iSAR ( NULL , 240 , Step , Maximum , Count ) ;
                                
                                if ( Sar > 0 )
                                        {
                                                SarBuffer [ Count ] = Sar ;
                                        }
                                
                                Count -- ;
                        }

Pls! Help me.

 
  1. Drag the SAR on to the chart and it draws itself.
  2. Bar = iBars(NULL, 240);
    Count = Bar - 2;
    while ( Count >= 0 ){
       Sar = iSAR(NULL, 240, Step, Maximum, Count);
    This says get the sar from H4, but SarBuffer/Count is relative to the current chart
    for (int shift = Bars-1-indicatorCounted(); shift >= 0; shift--){
        int H4shift = iBarsShift(NULL, PERIOD_H4, Time[shift]);
        SarBuffer[shift] = iSAR(NULL, PERIOD_H4, Step, Maximum, H4shift);
    }
 
I see but I need my indicator shows the result of pSAR ( H4 ) on H1, M30 chart. How to do that?
 
I GAVE you the loop/code. No Slaves here, learn to code or pay someone.
Reason: