PureBytes Links
Trading Reference Links
|
yes...
assuming your first criteria is stochastic, add another criteria
something like:
buy1 = stochastic criteria;
buy2 = TimeNum() > 154900;
buy = buy1 and buy2;
this will say that the stochastic must be after 154900, which is 3:49.
hope this helps.
--- In amibroker@xxxxxxxxxxxxxxx, "aboaziz_sa" <aboaziz_sa@xxx> wrote:
>
> AA set to 5 min to scan group of stocks with Stochastic as a system .
>
> My question:
> Is t possible to restrict the AA to show only Signals generated the
> last 10 minutes , not from the beginning of the trading day?
>
> I would appreciate it.
>
|