The Nifty Trading Lounge

MurAtt

Well-Known Member
Aaj poora Googly :angry: BUT the silver lining is the SL and the tgts :hehe:

12:19 PM - Nifty F&O Call: Sell in the range of 5300-5310 with 2-3 day targets of 5250-5210 (spot level) and stop loss of 5360 (spot level), says Imtiaz Qureishi, technical analyst, on CNBC Awaaz
12:16 PM - Nifty F&O Call: Sell at 5320 with a two-day target of 5260 (spot level) and stop loss of 5350 (spot level), says Hemen Kapadia, technical analyst, on CNBC Awaaz
12:13 PM - Nifty F&O Call: Sell with a 2-3 day target of 5180 (spot level) and stop loss of 5350 (spot level), says Manas Jaiswal, technical analyst, on CNBC Awaaz
12:11 PM - Nifty F&O Call: Sell with a 1-2 day target of 5250 (spot level) and stop loss of 5350 (spot level), says Parsh Zaveri of Zaveri Investment on CNBC Awaaz
12:06 PM - Nifty F&O Call: Sell with a 2-3 day target of 5210 (spot level) and stop loss of 5360-5390 (spot level), says Dharmesh Kant of India Nivesh Securities on CNBC Awaaz
 

Taurus1

Well-Known Member
Sudris, my background in VB6 is almost nil. A few months ago I read a few books and started. With some code from the Net, I was able to write a charting app that reads data from an ASCII txt file and display it as a barchart. I ran into a problem catching clicks within the PictureBox and abandoned it. :p
Most of the mouse code on the Net, goes straight into some API which I could'nt follow. :confused:

Meanwhile one AMI question.
I have an indicator that uses azimuth data to plot a line but the data is different for each ticker. :p :D
For example
If TickerName = Infy then az = x
If TickerName = Rcom then az = y
and so on
Plot az

How can this be implemented?
 
Yes a bad day .. though some good news too .... on the portfolio front - Alfa Laval delisted at a net 4K per share ... :thumb:
When did you get into Alfa Laval?
 

Taurus1

Well-Known Member
Meanwhile one AMI question.
I have an indicator that uses azimuth data to plot a line but the data is different for each ticker. :p :D
For example
If TickerName = Infy then az = x
If TickerName = Rcom then az = y
and so on
Plot az

How can this be implemented?
(Name()=="xyz")
Thank you. :hap2: :clapping: :D
 

sudris

Well-Known Member
Sudris, my background in VB6 is almost nil. A few months ago I read a few books and started. With some code from the Net, I was able to write a charting app that reads data from an ASCII txt file and display it as a barchart. I ran into a problem catching clicks within the PictureBox and abandoned it. :p
Most of the mouse code on the Net, goes straight into some API which I could'nt follow. :confused:

Meanwhile one AMI question.
I have an indicator that uses azimuth data to plot a line but the data is different for each ticker. :p :D
For example
If TickerName = Infy then az = x
If TickerName = Rcom then az = y
and so on
Plot az

How can this be implemented?
Azimuth sounds interesting, got to explore this one :thumb:
Not quite sure what you are trying to do. Couldn't quite understand your question well. But if the value remains constant for a particular ticker, you could be through with a nested if/else statements.

(Name()=="xyz")
Thank you. :hap2: :clapping: :D
on the right path...something like below should work :

Code:
_SECTION_BEGIN("AZIMUTH For Taurus1");
if (Name()=="INFY")
	az=100;
else
if (Name()=="RCOM")
	az = 200;
else
[COLOR="Red"]if (Name()=="SBIN")
	az = 300;
else
[/COLOR][COLOR="Blue"]	az=0;[/COLOR]

Plot(az, "AZIMUTH", colorBlack, styleLine);
_SECTION_END();
To add more symbols, paste the red part above the blue part and change the ticker name and the az value. Ticker name is case sensitive.

By the way, it isn't VB :D :rofl:
 

Similar threads