Omnesys NEST PULSE scripts for automated trading

mrkanitkar

Well-Known Member
#1
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.
 

SexyTrader

Well-Known Member
#3
Most of the tools and software enhancements provided by Omnesys are top-notch...

I'm currently using some of the facilities on NestPlus :thumb: They are really cool, I like trading with these tools :)

Happy Trading all the time!
 

VJAY

Well-Known Member
#4
Most of the tools and software enhancements provided by Omnesys are top-notch...

I'm currently using some of the facilities on NestPlus :thumb: They are really cool, I like trading with these tools :)

Happy Trading all the time!
Hi SexyTrader ,
Please share info about the facilities which you are using and tell about other tools to if possible.....:)
 

SexyTrader

Well-Known Member
#5
Hi SexyTrader ,
Please share info about the facilities which you are using and tell about other tools to if possible.....:)
Sure! I have used their NestPulse & WebChartsPlus tools. In both of them you can outline your strategy and they generate risk-reward signals in line with what we wish :thumb: I like that user-friendly approach.

I have also used their tools NestPremium that gives Advanced Charts & Dow Jones Newswire just for getting the feel of whats happening around the world :p Besides that, I have used all the other tools provided except for MunduTv coz thats just a local tv-channel live relay service :)

I'm a BIG fan of Omnesys....fabulous enhancements and all in one place. Who needs anything else ? :thumb:
 

mrkanitkar

Well-Known Member
#6
Here are few more.

BB
--
(LOW-EMA(CLOSE,13))<0
(HIGH-EMA(CLOSE,13))>0
--------
BK
-----
SMA(CLOSE,10) > SMA(CLOSE,20)
SMA(CLOSE,10) < SMA(CLOSE,20)
-----
Force index
---
(CLOSE -(Ref(CLOSE, 1))*VOLUME) < 0
(CLOSE -(Ref(CLOSE, 1))*VOLUME) > 0
-----
Pivot
Buy
(Close > (high+low+close)/3)
Buy exit
(Close < (2*(high+low+close)/3) -high) OR (Close > (2*(high+low+close)/3) -low)
Sell
(Close < (high+low+close)/3)
Sell exit
(Close > (2*(high+low+close)/3) -high) OR (Close < (2*(high+low+close)/3) -low)
---------
RSI
RSI (CLOSE, 14) > 77
RSI (CLOSE, 14) < 33
-------
SMA
CLOSE > SMA(CLOSE,50)
CLOSE < SMA(CLOSE,50)
------
 
#7
i have used omnesys pulse trial for 1 month in the past and its very nice...they have brought algo trading to retail level..very cheap (about 150 a month) and once you have a good system you can program it and get popups when the signal is generated...on clicking ok the trade gets executed...their technical support is also very good
 

GTji

Active Member
#8
Does anybody know if Omnesys NEST has a proper users guide or something for script writing with index of all the functions and examples of some more complex code?
 

sumosanammain

Well-Known Member
#9
Does anybody know if Omnesys NEST has a proper users guide or something for script writing with index of all the functions and examples of some more complex code?
Yes there is a pdf file. I got a link to it from TJ itself. Look around. Its really detailed.

And yes, it takes about 20 mins to download, not because its big, but the file gets stuck at a particular percentage. You have to leave it be.

I think it was in the Zerodha thread.
 

Similar threads