INDICATOR LIKE TICKS NYSE  [SOLVED]

Questions about MultiCharts and user contributed studies.
chipeur_le_renard
Posts: 50
Joined: 13 Jul 2014
Has thanked: 15 times
Been thanked: 5 times

INDICATOR LIKE TICKS NYSE

Postby chipeur_le_renard » 24 Sep 2016

HELLO every one


it s too difficult fo me to read an indicator like ticks nyse but with 10 quotes ..for example add all changes in these 10 quotes and see a moving average of change...up or down or a canddle every minute...

for exemple google uptrend ibm uptrend facebook downtrend ....mm go up...


thx for help

kind regards

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: INDICATOR LIKE TICKS NYSE

Postby TJ » 24 Sep 2016

HELLO every one


it s too difficult fo me to read an indicator like ticks nyse but with 10 quotes ..for example add all changes in these 10 quotes and see a moving average of change...up or down or a canddle every minute...

for exemple google uptrend ibm uptrend facebook downtrend ....mm go up...


thx for help

kind regards
Don't understand what you are asking.

Do you have a screen shot?

chipeur_le_renard
Posts: 50
Joined: 13 Jul 2014
Has thanked: 15 times
Been thanked: 5 times

Re: INDICATOR LIKE TICKS NYSE

Postby chipeur_le_renard » 24 Sep 2016

i want an indicator like ticks nyse but only with 10 quotes..my 10 quotes

thx TJ

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: INDICATOR LIKE TICKS NYSE

Postby TJ » 24 Sep 2016

i want an indicator like ticks nyse but only with 10 quotes..my 10 quotes

thx TJ
If you can find the formula for ticks, you can easily build it with EasyLanguage.

SP
Posts: 465
Joined: 06 Feb 2006
Has thanked: 36 times
Been thanked: 286 times

Re: INDICATOR LIKE TICKS NYSE

Postby SP » 26 Sep 2016

As a starting point you could insert your 10 Nasdaq Stocks into a scanner window with resolution 1 Tick
and add one extra row (i.e. @NQ , this value is excluded from claculation with if leftStr(symbol, 1)<>"@" then ..).

With that code you get the sum of the 10 ticks above that symbol:

Code: Select all

Vars:

NasdaqTick ( 0 ),
TotalNasdaqTick ( 0 ),
Row (getAppInfo(aiRow)),
Counter ( 0 ),
gv ("SumTick"+numToStr(getAppInfo(aiAppID), 0));

if close > close[1] then NasdaqTick = 1 else
if close < close[1] then NasdaqTick = -1 else
NasdaqTick = NasdaqTick [1];

if leftStr(symbol, 1)<>"@" then
begin
value1 = gvSetNamedFloat(gv+numToStr(Row, 0), NasdaqTick );
plot1("" , "Tick",black, (iff (NasdaqTick =1,green,red))) ;
end
else
begin
TotalNasdaqTick = 0;
for Counter = 1 to Row-1 begin
TotalNasdaqTick = TotalNasdaqTick + gvGetNamedFloat(gv+numToStr(Counter, 0), -1);
end;
plot1(NumToStr(TotalNasdaqTick,0), "Tick", black, (iff (TotalNasdaqTick>=1,green,red))) ;
end;
Attachments
NQ Tick.jpg
(43.14 KiB) Downloaded 925 times

chipeur_le_renard
Posts: 50
Joined: 13 Jul 2014
Has thanked: 15 times
Been thanked: 5 times

Re: INDICATOR LIKE TICKS NYSE  [SOLVED]

Postby chipeur_le_renard » 26 Sep 2016

i go to see this code and understand how i can do

thx for your help

kind regards


Return to “MultiCharts”