Omnesys NEST PULSE scripts for automated trading

#22
hi all,
omnesys nest pulse allows algo trading for retail. It can be used with nse now or nest trader as plugin. It costs 125/- per month. You can use it with any broker terminal which is either now or nest.
As many of us started using omnesys nest pulse, i thought of having separate thread. Please do post all nest scripts.
Here is more info on product https://plus.omnesysindia.com/nestplus/dashboard/
i will post my ones as well.
Here is sample one on crossover.
-------------
buy alert
------
set ma1 = simplemovingaverage(close, 28)
set ma2 = simplemovingaverage(close, 14)
crossover(ma1, ma2)
---------
buy exit
-------
set ma1 = simplemovingaverage(close, 28)
set ma2 = simplemovingaverage(close, 14)
crossover(ma2, ma1)
--------
here is formula for mk moving avg of 3-80 cross over

buy & sell exit --
(sma(close,3) > sma(close,80)) and volume > ref(volume, 1)

sell and buy exit
(sma(close,3) < sma(close,80)) and volume > ref(volume, 1)
--------------
based on rsi
-------
go long when: Rsi(close, 14) > 55
exit long when: Rsi(close, 14) < 30
--------
based on aroon
-------
go long when: Aroonup (25) > 90 and aroondown (25) < 10
go short when: Aroonup (25) < 10 and aroondown (25) > 90
-------
a new sample strategy for nest pulse

the directional movement system is a trading system that was developed by popular technical analyst, welles wilder. This trading system consists of 3 indicators, the average directional index (adx), the plus directional indicator (di+), and the minus directional indicator (di-). The adx indicator is used in technical analysis as an objective value for the strength of trend, and not the actual direction of the trend. The directional movement indicators (di+ and di-) indicate whether the trend is up or down.
In general, the bulls have the edge when +di is greater than - di, while the bears have the edge when - di is greater. Crossovers of these directional indicators are combined with adx for a complete trading system.

Directional movement is positive (plus) when the current high minus the prior high is greater than the prior low minus the current low. The plus directional movement (+dm) then equals the current high minus the prior high, provided it is positive. A negative value would simply be entered as zero.
Directional movement is negative (minus) when the prior low minus the current low is greater than the current high minus the prior high. This so-called minus directional movement (-dm) equals the prior low minus the current low, provided it is positive. A negative value would simply be entered as zero.



How can i apply this on nest pulse?

Go long when: Dip (21) > din (21) and adx (21) > 25
go short when: Dip (21) < din (21) and adx (21) > 25
-------------
please feel free to post and discuss.
Please note: I am not promoting nest pulse. I am using it for few months and found useful.

. ..
 
#23
Mr. Kanitkar those were really neat tips. Thanks a lot!

I would like you to comment on the following.

I want my trades to happen on SMA slopes (how steep the lines are) and the BB slopes. But I couldn't fathom how the slope function is used in N+. The unit of the slope may be in "change in value of SMA in paisa per minute", rather than in degrees.

Awaiting your response!
 
#24
I have a plugin which is supposed to trade semi auto. But no order is delivered to the API for the user to press the button "Place". But the plugin was working about a week back. What could be the problem? Is the N+ dll at fault?
 
#26
Have tested the below ALGO trading strategy in zerodha nest plus with 10 min chart.
Found good results.

BUY- CROSSOVER(REF(CLOSE,1), PSAR(0.98, 0.09)
SELL- CROSSOVER(PSAR(0.98, 0.09), REF(CLOSE,1)

Experts please advice.
 
#28
is anybody using special bracket order feature in nest plus. how to subscribe it and what is its performance. link www.omnesysindia.com/nestbracketorder.html .

thanks in advance

Bracket order provides you a simultaneous order for stop loss and take profit along with order entry. Also, you can trail your stop loss and take profit also. This provides for great way to execute intraday trades. To subscribe , your broker must have approval for bracket order and he only can provide that if he has omnesys installed... Cheers
 
#29
Bracket order provides you a simultaneous order for stop loss and take profit along with order entry. Also, you can trail your stop loss and take profit also. This provides for great way to execute intraday trades. To subscribe , your broker must have approval for bracket order and he only can provide that if he has omnesys installed... Cheers

Dear Puneet ji,

I have requested so many times to provide this bracket order to my terminal, but i did not get any replay, whether this option is available in nest terminal of master trust or not, if it is there, what is the procedure to get in my terminal.
 
#30
Dear Puneet ji,



I have requested so many times to provide this bracket order to my terminal, but i did not get any replay, whether this option is available in nest terminal of master trust or not, if it is there, what is the procedure to get in my terminal.

Yes, the same is available. Could you please advise Whome did you speak to?
 

Similar threads