Spread Linien  [SOLVED]

Questions about MultiCharts and user contributed studies.
Jimmyrakete
Posts: 147
Joined: 04 Jun 2014
Has thanked: 2 times

Spread Linien

Postby Jimmyrakete » 08 Apr 2016

wo kann ich die Spread Linien im Chart anzeigen lassen

asyx
Posts: 27
Joined: 30 Apr 2011
Location: Europe
Has thanked: 57 times
Been thanked: 6 times

Re: Spread Linien

Postby asyx » 09 Apr 2016

Insert Study --> Bid&Ask.

Probier einfach mal die Sachen aus.
Denk nicht, dass Du auf absolute Basic-Fragen groß antworten erhältst.

Du solltest Deine Fragen in Englisch stellen.
Das versteht jeder, der sich hier im Forum rumtreibt.

Cheers
asyx

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

Re: Spread Linien

Postby TJ » 09 Apr 2016

If he could write in comprehensible English, he would have done so. It is ok to write in one's native language; those who do not understand have no obligation to reply. MultiCharts have users from all over the World, surely someone out there knows. It would help if he is more descriptive with his questions; people tend to pass over one-liner questions. Maybe he can take a picture to show what he wants?

Jimmyrakete
Posts: 147
Joined: 04 Jun 2014
Has thanked: 2 times

Re: Spread Linien

Postby Jimmyrakete » 20 Apr 2016

wo kann ich die Spread Linien im Chart anzeigen lassen wie im Video

where can I see the spread lines in the chart, as in the video

http://screencast-o-matic.com/watch/cDfYIJ15Mt

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: Spread Linien

Postby Henry MultiСharts » 20 Apr 2016

wo kann ich die Spread Linien im Chart anzeigen lassen wie im Video

where can I see the spread lines in the chart, as in the video

http://screencast-o-matic.com/watch/cDfYIJ15Mt
There is no such prebuilt study. You need to create your own one.

Jimmyrakete
Posts: 147
Joined: 04 Jun 2014
Has thanked: 2 times

Re: Spread Linien

Postby Jimmyrakete » 20 Apr 2016

ich kann leider kein studie schreiben kann mir jemand helfen

Unfortunately I can not write a studie can someone help me

waldem
Posts: 115
Joined: 18 Nov 2013
Has thanked: 3 times
Been thanked: 4 times

Re: Spread Linien

Postby waldem » 21 Apr 2016

unfortunately develop complete study from an idea i think is out of scope of this forum.
the scope of this forum is just help you if something in code does not work like you whish.

support and resistance level are very difficult to program because you have to use array to keep the hystorical max min etc....
moreover your level on video is moving and you did not explain why and when move, therefore mean maybe 2 or 3 wks of work.... is not so easy like post one video.

my advise is to start with simple code and soon or late you will be able to do whatever you want.

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

Re: Spread Linien

Postby SP » 22 Apr 2016

Du kannst Plots oder Trendlinien zur Anzeige der Spreads verwenden.
Ein einfacher, aber nicht sehr effizienter Code mit Plots wäre:

Code: Select all

// Under Properties - Check "Update on every tick"
Input:
SpaceRight ( 30 ),
BidLineColor ( red ),
AskLineColor ( green ),
LineWidth ( 1 ) ;

If LastBarOnChart_s then
begin
// Under Style Plot Type -> Line
for value1 = 0 to SpaceRight begin
Plot1[-value1 ](insideBid, "Bid",BidLineColor,BidLineColor,LineWidth );
Plot2[-value1 ](insideAsk, "Ask",AskLineColor,AskLineColor,LineWidth );
end;
noplot(1);
noplot(2);
end;



Jimmyrakete
Posts: 147
Joined: 04 Jun 2014
Has thanked: 2 times

Re: Spread Linien

Postby Jimmyrakete » 22 Apr 2016

Thank you very much SP

Jimmyrakete
Posts: 147
Joined: 04 Jun 2014
Has thanked: 2 times

Re: Spread Linien

Postby Jimmyrakete » 23 Apr 2016

bid.PNG
tried it get this error

habe es versucht bekomme diesen Fehler

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

Re: Spread Linien  [SOLVED]

Postby TJ » 23 Apr 2016

bid.PNG
tried it get this error

habe es versucht bekomme diesen Fehler
The input SpaceRight is the number of bars to the right of the current bar.

You can correct the problem by reducing the size of the number (eg 0 zero).

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

Re: Spread Linien

Postby SP » 23 Apr 2016

Or go to Format Window -> X - Time Scale -> Chart Shift -> Press the "%" button to change it to "Bars" and type in a number greater than the SpaceRight input (ie 40).


Return to “MultiCharts”