Quantcast
Channel: Traderji.com
Viewing all 10287 articles
Browse latest View live

Introducing Broker to buy shares on NASDAQ?

$
0
0
I plan to buy shares in companies such as Google, Yahoo and Solarcity.

I've read that Kotak Securities is awful even though it has access to the NASDAQ.

I'm happy with Sharekhan for futures and equities for domestic markets but would also like to start investing in international markets.

E-signal data feed, inconsistent?

$
0
0
Amazed at how inconsistent

E-signal data and E-signal Pro charting seem to be.

Anyone else using it and tested the data? Used the time templates?

Anyone can recommend some different and more reliable advanced charting and data feed service?

forex training

$
0
0
Hello Everyone
I am Newbie to forex and want to learn forex trading, please recommend me any
Forex learning centre or institute preferably in northern india or around Delhi.
Thanks

which one is the best AFL file for algotrading with MASTERTRUST

$
0
0
hi friends

Can any of you suggest me which one is the best afl for algotrading with MASTERTRUST. (its completeley automated. not like manual)

suggestions needed on afl for 1 min & 5 mins time frame algo trading

i found MASTERTRUST OFFER great..

kindly required inputs from u all seniors and friends

Day trading by a learner

$
0
0
For only intraday purpose
Those who are interested can buy or sell as mentioned below
at opening and close positions at the day end.
sl as per one's risk app.Mine will be prv day's low.
Buy -
1. AIAENG
2. AUROPHARMA
3. FORTIS
4. BHARTIAIRTEL
5. GITANJALI
6. NTPC
7. BPCL
Sell-
1.AJANTA PHARMA
2. ESSDEE
3. ADANI POWER

Good luck and happy trading

Please help me! BarsLast()

$
0
0
AMI Without this "BARSLAST(N)"

N=High;
XPL=Ref(D,BarsSince(N));

XPL=Ref(D,BARSLAST(N));(Find the last condition holds to the current number of cycles).

I need this expression!

Kreangast
2013-5-23

Nifty range 23-may 2013

$
0
0
Nifty range support 6069,major support 6050,below it in panic can go down to 6018, major resi 6121 above it 6143 major hurdle,if it crosses huge shortcovering can happen upto 6171 nifty(cash)

Settings of macd for intraday

$
0
0
hi,
i am karthikeyan k registered today.
May any one help me with the settings to be followed in macd for intraday. Chart is for 5 minutes.

Thank you.

LWMA - Linearly weighted moving average

$
0
0
In a 15-day linearly-weighted moving average,
today’s closing price is multiplied by 15, yesterday’s by 14, and so on until day 1 in the period’s range is reached. These results are then added together and divided by the sum of the multipliers (15 + 14 + 13 + … + 3 + 2 + 1 = 120).

The linearly weighted moving average was one of the first responses to placing a greater importance on recent data. The popularity of this moving average has been diminished by the exponential moving average, but none the less it still proves to be very useful.
From : investopedia.

I’ve done the coding only.
see if it could help u in improving ur systems.

previously i have uploaded this on other websites.
now here to benifit all of us


/************/

function LWMA( P, per )
{
s=0;
pa=0;

for( i = 0; i < per; i++ )
{
s=s+(Ref(P,-i)*(per-i));
pa=pa+(per-i);
}
return (s/pa);
}

P = ParamField("Price field");
Periods = Param("Periods", 15, 2, 300, 1, 10 );

Plot(LWMA( P, Periods ), "LWMA("+Periods +")", ParamColor( "LWMA Color", colorCycle ), ParamStyle("LWMA Style") );

/*************/

Some optimize for code ..please help

$
0
0
Hi all friends

I'm trying the code below but I need some helps for code

I want to add one of EMA for histogram and buy , sell , optimize codes.Ema cross up histogram buy and Ema cross down histogram sell.Please help for this code..

_SECTION_BEGIN("SINI");
r = Param( "SINI period 'R':", 12, 1, 100, 1 );
s = Param( "SINI period 'S':", 26, 1, 100, 1 );
u = Param( "SINI period 'U':", 10, 1, 100, 1 );
sig = Param( "Signal period:", 9, 1, 100, 1 );

Mtm = C - Ref ( C, -1 );
AbsMtm = abs ( Mtm );
Num_T = EMA ( EMA( EMA ( Mtm, r ), s ), u );
Den_T = EMA ( EMA( EMA ( AbsMtm, r ), s ), u);

SINI = 100 * Nz ( Num_T / Den_T );
TSIL = 100 * Nz ( Num_T / Den_T );

//Green TSIL Line=Rising; Red TSIL Line=Falling
col = IIf( TSIL > Ref( TSIL, -1 ), colorLime, colorRed );
Plot( TSIL, "SINI("+r+","+s+","+u+")", col, styleLine | styleThick);
//Green EMA SINI,sig Line=Rising; Red EMA SINI,sig Line=Falling
col = IIf( EMA(SINI,sig) > Ref( EMA(SINI,sig), -1 ), colorBrightGreen,

colorRed );
Plot( EMA(SINI,sig), "", col, styleThick);
Histcol= IIf(SINI>0,colorIndigo,colorDarkRed) ;


Plot( SINI-sig, "SINI Histogram", colorWhite, styleHistogram );
Plot(0,"",ParamColor( "ColorZero", colorDarkRed ),styleLine);

P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );




//Title = "SINI";
_SECTION_END();

//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

//FORMULA
Cuptop1= C>BBandTop( C,20,1 ) ;
top1up= BBandTop( C,20,1 )>=Ref(BBandTop( C,20,1 ),-1) ;
top2up= BBandTop( C,20,2 )>=Ref(BBandTop( C,20,2 ),-1) ;
MACDup= MACD()>Signal() ;
Hist= MACD()-Signal() ;
Histup= Hist>Ref(Hist,-1) ;
stochup= StochK()>StochD() ;
stoch80= StochK()<80 ;
MFIup= MFI()>EMA(MFI(),5) AND MFI()>20 ;
ma21up= MA(C,21)>=Ref(MA(C,21),-1) ;
ma55up= MA(C,55)>=Ref(MA(C,55),-1) ;
EMA89up= EMA(C,89)>=Ref(EMA(C,89),-1) ;
Cupma21= C>MA(C,21) ;
Cupma55= C>MA(C,55) ;
cupema89= C>EMA(C,89) ;
Vup50= V>50000 ;
CCIup0= CCI()>0 ;
Cupo= C>O ;
//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx





_SECTION_END();

Chart is not shown as well as buy sell arrow

$
0
0
Can anyone make the afl workable with chart and buy sell arrow signal.





range = Param("ADX Periods", 14, 2, 200, 1 );

Cond_EMA = Cross(EMA(Close,3), EMA(Close,10));
Cond_ADX = ADX(range) > 14 AND PDI(range) > MDI(range);

Sell=False;
Buy= Cond_Ema AND Cond_Adx;
Filter = (Buy OR Sell) AND Volume >0;


SetOption("NoDefaultColumns", True );
AddTextColumn( Name(), "Symbol");
AddTextColumn( FullName(), "Symbol Name",1.2, colorDefault,colorDefault,200);
AddTextColumn( WriteIf( Buy, "Buy", WriteIf( Sell, "Sell", "")), "Trade");

AddColumn( DateTime(), "Date", formatDateTime, colorDefault,colorDefault, 70 );
AddColumn(Close, "Close", 1.3, colorDefault, colorDefault, 60);
AddColumn(Volume, "Volume", 1.0, colorDefault,colorDefault, 70);



shape = Buy * shapeUpArrow ;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) );

hello to everyone

$
0
0
Dear friends,
hello to all, i'm new to trading and mostly interested in Intraday trading and will to join market soon, what about kotak securities.... im open to all kind of advises and wishes......

Base metals fell at LME opening time

$
0
0
Looking at Kitco charts and FXCM copper data, base metals went short at the time of the LME opening of 6:30 AM IST

Wouldn't it be better for intra day and swing traders if the MCX maintains its current closing time but opens at LME opening time of 6:30 AM IST in the morning?

Best Trading Tips Provider India

$
0
0
Everyone want to become rich so he/she finds the instant money making methods. Among lot of methods trading is the best way to earn more money on daily basis where investment is less but profit is more. So for trading, experts advice is very important who guide us when to trade so that we can earn profit. Profit.biz is such an advisory firm where team of experts provides stock, commodity & forex tips with 100% accuracy. You can check the accuracy yourself by submiting Commodity Tips Free Trial Form.

Currency Trend 23 May 2013

$
0
0
CURRENCIES S1 S2 S3 R1 R2 R3
USDINR 55.4800 55.3600 55.2000 55.7400 55.8500 56.0000
EURINR 71.7000 71.6000 71.4500 72.0000 72.1200 72.2500
GBPINR 83.7600 83.6600 83.5200 83.9800 84.1300 84.2800
JPYINR 53.9300 53.8100 53.7000 54.1600 54.3000 54.4500

JPYINR on daily charts had resisted near the trend line and closed below it indicating selling pressure may be seen below the level of 54.0000.

For more info click here

Stock Tips, Commodity Tips, Mcx Tips, Currency Tips, Equity Tips

Dynamic zons by zamansky and

$
0
0
Hi friends
here is a metastock code which I was trying to convert into Amibroker formula.
Almost there but seems slightly on wrongside.
can the experts correct it please
best regards
ford

HTML Code:


//http://systems4trading.com/formula,487,metastock,dynamic-zones.html
/*
Zamansky & Stendahl's Dynamic Zones for MS6.5 (From the TASC July 1997 article).
First, for the Lookback Periods plot a 9-day RSI along with StDev adjusted rolling 70-day SMAs; e.g., as can be seen in the article's S&P 500-example. Most indicators use a fixed zone for buy and sell signals.
Here's a concept based on zones that are responsive to past levelsof theindicator.
One approach to active investing employs the use of oscillatorsto exploittradable market trends.
This investing style follows a very simple form of logic: Enter themarket only when an oscillator
has moved far above or below traditional tradinglevels.
However, these oscillator-driven systems lack the ability to evolvewith the market becausethey use
fixed buy and sell zones. Traders typically use one set ofbuy andsell zones for a bull marketand
substantially different zones for a bear market. And therein liestheproblem.

Once traders begin introducing their market opinions into trading equations,by changing the zones,
they negate the system's mechanical nature. The objective is to havea systemautomatically defineits
own buy and sell zones and thereby profitably trade in any market-- bullor bear.

Dynamic zones offer a solution to the problem of fixed buy and sellzones for any oscillator-driven system.

The algorithm for the dynamic zones is a series of steps. First, decidethe value of the lookback period t.
Next, decide the value of the probability Pbuy for buy zone and valueof the probability Psell for the sell zone.

The area above and below the dynamic zones constitute the upper andlower10% boundaries.
The zones appear to evolve with the market because they use a rolling70-day period of indicator
 values in their construction.
 



Dynamic Zones
PR:=Input("Enter Periods for RSI",1,100,9);
PB:=Input("Enter Periods for BUY",1,100,70);
PS:=Input("Enter Periods for SELL",1,100,70);
UpZone:=Mov(RSI(PR),PS,S)+(1.3185 *StDev(RSI(PR),PS));
LwZone:=Mov(RSI(PR),PB,S)-(1.3185 *StDev(RSI(PR),PB));
UpZone;
LwZone;
*/
PR = 9;
PB = 70;
PS = 70;
UPZONE = MA(RSI(PR),70) + (1.3185*StDev(RSI(PR),70));
DNZONE = MA(RSI(PR),70) - (1.3185*StDev(RSI(PR),70));

Plot(RSI(9),"rsi-9",colorBlue,styleThick);
Plot(UPZONE,"UPZONE",colorRed,styleThick);
Plot(DNZONE,"DNZONE",colorBlack,styleThick);


Hello

Can I book my loss at any moment irrespective of strike price before expiry

$
0
0
Hi Friends,
I have bought call option of TataSteel May 330 @prem val 7.
Now its around 300 @prem val 2.

I can see LOSS here.

I am new to options trading so like to know some details.

My query is, Can I book my loss at any moment irrespective of strike price. Or I have to wait till expiry date to exercise my position.

Also, If I will square off @Prem val of 2, then my loss will be:
(7-2)*1000= Rs. 5000. loss
where, 1000 is lot size.

Please advise, am I correct in this calculation.

Stochastic RSI and Slow stochastic

$
0
0
Dear all
i need these two afl.
hope to get your help.
thanks in advance.

easy and fast rule

$
0
0
I think a fast & esy rule of thumb to judge the movement of stocks is to study the the corelation b/w the stock & the
Viewing all 10287 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>