come ti dicevo devi calcolare i pivot nel timeframe daily ed espanderli nell'intraday

con un altro linguaggio si fa così, devi trasferirlo in easyscript

TimeFrameSet( inDaily );

P = ( H + L + C ) / 3;
R1 = ( P * 2 ) - L;
S1 = ( P * 2 ) - H;
R2 = P + ( R1 - S1 );
S2 = P - ( R1 - S1 );
R3 = R2 + (H - L);
S3 = S2 - (H - L) ;

TimeFrameRestore();

P = TimeFrameExpand( P, inDaily );
R1 = TimeFrameExpand( R1, inDaily );
S1 = TimeFrameExpand( S1, inDaily );
R2 = TimeFrameExpand( R2, inDaily );
S2 = TimeFrameExpand( S2, inDaily );
R3 = TimeFrameExpand( R3, inDaily );
S3 = TimeFrameExpand( S3, inDaily );

Plot( R2, "R2", colorGrey50, styleDashed );
Plot( R1, "R1", colorGrey50, styleDashed );
Plot( P, "P", colorGrey50, styleDashed );
Plot( S1, "S1", colorGrey50, styleDashed );
Plot( S2, "S2", colorGrey50, styleDashed );
Plot( R3, "R3", colorGrey50, styleDashed );
Plot( S3, "S3", colorGrey50, styleDashed );