I'm PLOT a star when i'm have a BUY
PlotShapes(Buy*shapeStar,colorRed,0,H,10);

How plot the Value of Big_Vol over the Star

Thank

Merci
 
YLTech ( Yves L. )
 
Le présent message et les documents qui y sont joints sont réservés 
exclusivement au destinataire indiqué. Il est strictement interdit d'en 
utiliser ou d'en divulguer le contenu. Si vous recevez le présent message par 
erreur, veuillez le détruire S.V.P. et nous en aviser immédiatement afin que 
nous puissions corriger nos dossiers. Merci.
 
This message and the attached documents may contain privileged or confidential 
information that are intended to the addressee only. Any unauthorized 
disclosure is strictly prohibited. If you happen to receive this message by 
error, please delete it and notify us immediately so that we may correct our 
internal records. Thank you.
 
[email protected]

  ----- Original Message ----- 
  From: Rajiv Arya 
  To: [email protected] 
  Sent: Saturday, December 12, 2009 7:23 AM
  Subject: RE: [amibroker] Volume 5min. VS Daily ????


    
  Try this

  TimeFrameSet( inDaily ); // switch to Daily frame
  V20= Ref(MA(V,20),-2) ; // V20 Two day Before
  V50= Ref(MA(V,50),-2) ; // V50 Two day Before
  Vmin= (Min(V20,V50)/78) ; //Volume in 5min.
  TimeFrameRestore(); // restore time frame to original
  Vmin_expand = TimeFrameExpand(Vmin,inDaily) ;
  Vol_5_expand = V;
  Big_Vol=(Vol_5_expand/Vmin_expand) ; //ratio of Vmin
  Buy= Vol_5_expand>(2*Vmin_expand) ;




------------------------------------------------------------------------------
  To: [email protected]
  From: [email protected]
  Date: Fri, 11 Dec 2009 16:41:43 -0500
  Subject: Re: [amibroker] Volume 5min. VS Daily ????

    


  My time frame is 5 min.
  I would compare the volume in 5 min. with the Daily Volume(Daily/78)

  Thank

  Merci
   
  YLTech ( Yves L. )
   
  Le présent message et les documents qui y sont joints sont réservés 
exclusivement au destinataire indiqué. Il est strictement interdit d'en 
utiliser ou d'en divulguer le contenu. Si vous recevez le présent message par 
erreur, veuillez le détruire S.V.P. et nous en aviser immédiatement afin que 
nous puissions corriger nos dossiers. Merci.
   
  This message and the attached documents may contain privileged or 
confidential information that are intended to the addressee only. Any 
unauthorized disclosure is strictly prohibited. If you happen to receive this 
message by error, please delete it and notify us immediately so that we may 
correct our internal records. Thank you.
   
  [email protected]

    ----- Original Message ----- 
    From: Rajiv Arya 
    To: [email protected] 
    Sent: Friday, December 11, 2009 3:54 PM
    Subject: RE: [amibroker] Volume 5min. VS Daily ????


      

     what time frame is your chart setting
    5 minutes?
     
     


----------------------------------------------------------------------------
    To: [email protected]
    From: [email protected]
    Date: Fri, 11 Dec 2009 12:35:20 -0500
    Subject: [amibroker] Volume 5min. VS Daily ????

      
    In the formula below,
    I'm try to compare the Volume in 5 minutes VS Min(V20,V50) in Daily

    How PLOT the RATIO Big_Vol
    and
    only one start and one RATIO and not a lot of BUY SIGNAL ?

    Thank 



----------------------------------------------------------------------------

    _SECTION_BEGIN("Vol.5min");
    SetChartOptions(0,chartShowArrows|chartShowDates);
    _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo 
%g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
    TimeFrameSet( inDaily ); // switch to Daily frame
    V20= Ref(MA(V,20),-2) ; // V20 Two day Before
    V50= Ref(MA(V,50),-2) ; // V50 Two day Before
    Vmin= (Min(V20,V50)/78) ; //Volume in 5min.
    TimeFrameRestore(); // restore time frame to original
    TimeFrameSet( in5Minute ); // switch to 5min. frame
    Vol_5= V ;
    TimeFrameRestore(); // restore time frame to original
    Vmin_expand = TimeFrameExpand(Vmin,inDaily) ;
    Vol_5_expand = TimeFrameExpand(Vol_5,in5Minute) ;
    Big_Vol=(Vol_5_expand/Vmin_expand) ; //ratio of Vmin
    Buy= Vol_5_expand>(2*Vmin_expand) ;
     
    PlotShapes(Buy*shapeStar,colorBlue,0,H,10);
    // How PLOT the RATIO Big_Vol
    //Plot(Big_Vol,"Big_Vol",colorBlue,0,H,20 );  ????????????? 
    _SECTION_END();




----------------------------------------------------------------------------

    Merci
     
    YLTech ( Yves L. )
     
    Le présent message et les documents qui y sont joints sont réservés 
exclusivement au destinataire indiqué. Il est strictement interdit d'en 
utiliser ou d'en divulguer le contenu. Si vous recevez le présent message par 
erreur, veuillez le détruire S.V.P. et nous en aviser immédiatement afin que 
nous puissions corriger nos dossiers. Merci.
     
    This message and the attached documents may contain privileged or 
confidential information that are intended to the addressee only. Any 
unauthorized disclosure is strictly prohibited. If you happen to receive this 
message by error, please delete it and notify us immediately so that we may 
correct our internal records. Thank you.
     
    [email protected]





----------------------------------------------------------------------------
    Hotmail: Powerful Free email with security by Microsoft. Get it now. 






------------------------------------------------------------------------------
  Hotmail: Trusted email with Microsoft’s powerful SPAM protection. Sign up 
now. 

  

Reply via email to