Search found 115 matches

by waldem
11 Oct 2021
Forum: MultiCharts
Topic: export text with comma
Replies: 1
Views: 405

export text with comma

Hallo team, the function: TradeStr2="Perf%="+NumToStr(PercGain,1)+NewLine; FileAppend(FName3, TradeStr2); export to me the number with point ".", instead that with comma ",". I read that NumToStr() uses a point as the decimal separator (1.44530) or a comma (1,44530) depending from the regional setti...
by waldem
06 Apr 2021
Forum: MultiCharts
Topic: Lastbar close
Replies: 1
Views: 425

Lastbar close

Hallo team, why sometime the last bar close is not get? i did very simple commentary: If AtCommentaryBar then begin Vars:Str(""); str=Str+" ****************************************"+NewLine; str=Str+" commentary relativo a PROVA"+NewLine; str=Str+" Close = "+NumToStr(close ,3)+NewLine; str=Str+" bar...
by waldem
29 Mar 2020
Forum: MultiCharts
Topic: problem with ADE ListS.COunt
Replies: 3
Views: 1185

Re: problem with ADE ListS.COunt

Hallo TJ, with zero i got error "list out of bounds".
walter
by waldem
28 Mar 2020
Forum: MultiCharts
Topic: problem with ADE ListS.COunt
Replies: 3
Views: 1185

problem with ADE ListS.COunt

Hallo all do you have any idea why the command "ListS.COunt" count the line but not the last? if i have 10 row the output is 9. this is my code: var:chklist (0),listaportafoglio(ListS.New),body(" "); chklist = ListS.Clear(listaportafoglio); chklist = ListS.ReadFile(listaportafoglio,percorso_file); f...
by waldem
12 Dec 2019
Forum: MultiCharts
Topic: multicharts date in file name [SOLVED]
Replies: 4
Views: 1343

Re: multicharts date in file name [SOLVED]

Thanks Smoky, but as suggested by TJ is easy to read wiky.
I used FormatDate function and it works:
FName3 = "C:\Temp\CheckList"+FormatDate("dd-MM-yy",MyDate)+".txt";
by waldem
11 Dec 2019
Forum: MultiCharts
Topic: multicharts date in file name [SOLVED]
Replies: 4
Views: 1343

Re: multicharts date in file name [SOLVED]

i tried to solve like this FName3 = "C:\Temp\CheckList_BLSH"+datetostring(date)+".txt";
but i got error because i cannot create file with special character "/"
any idea?
by waldem
11 Dec 2019
Forum: MultiCharts
Topic: multicharts date in file name [SOLVED]
Replies: 4
Views: 1343

multicharts date in file name [SOLVED]

Hallo, when i export a txt file should be possible to format the name including the date?
today i have one initial variable like this: FName = "C:\Temp\CheckList.TXT";
Should be possible to append the date somehow?
by waldem
18 Jan 2019
Forum: User Contributed Studies and Indicator Library
Topic: spread charts
Replies: 25
Views: 14127

Re: spread charts

hallo, i want ask you an update on this very old topic.
is possible now to create an index that is data1/data2?
i know TJ indicator and work good, but i want plot my indicator on spread chart and is impossible to plot indicator of indicator..

thank you
by waldem
04 Sep 2018
Forum: MultiCharts
Topic: Portfolio allocation in %
Replies: 1
Views: 699

Portfolio allocation in %

Hallo team, i have problem using portfolio with allocation set in % of equity. why if i set 10% of 100000, in first operation does not buy 10000? i attach 3 pictures of my portfolio. SPX1 you can see my setting 10% of 100.000 SPX2 you can see that on 2010 december 24 MC buy 6235 euro SPX3 you can se...
by waldem
31 May 2018
Forum: MultiCharts
Topic: Close all open positions with Money Management Signal & PT
Replies: 4
Views: 2081

Re: Close all open positions with Money Management Signal & PT

here the code.

Code: Select all

inputs: StopLossPcntsOfPortfolio(1),
ProfitTargetPcntsOfPortfolio(0.1);
variable: value(0);
setstopposition;
value = StopLossPcntsOfPortfolio * 0.01 * 100000;
setstoploss(convert_currency(datetime[0], portfolio_CurrencyCode, SymbolCurrencyCode, value ));
by waldem
31 May 2018
Forum: MultiCharts
Topic: Close all open positions with Money Management Signal & PT
Replies: 4
Views: 2081

Re: Close all open positions with Money Management Signal & PT

hallo, i reply to this old topic because is still not clear to me if is possible to program portfolio setstoploss at 1000$; if today loss is more than 1k i will see only 1k in backtest. i mean in backetst only, not in realtime. i have tried this code from Wiki but i see no changes; this should stop ...
by waldem
30 Jun 2017
Forum: MultiCharts
Topic: Translate stocastic formula
Replies: 1
Views: 914

Translate stocastic formula

Hallo all; someone should help me to translate in powerlanguage this formula from metastock?
(Mov(Stoch(40,20),5,S)-50)

i cannot understand how to do because in MC the stocastic formula does not have unique result but 4 results oFastK oFastD etc...

do you have any idea?
by waldem
14 Apr 2017
Forum: MultiCharts
Topic: [AllowSendOrdersAlways=true]
Replies: 1
Views: 1000

[AllowSendOrdersAlways=true]

hi team, using [AllowSendOrdersAlways=true] in daily bar, should i use normal "sell" instead of Setprofittarget to exit in same bar?
Thanks and enjoy your Easter time.

walter
by waldem
13 Apr 2017
Forum: MultiCharts
Topic: Rounding before the zero [SOLVED]
Replies: 3
Views: 1188

Re: Rounding before the zero [SOLVED]

Hi TJ, 3663 should be 3660 or 3665 step of 5.
walter
by waldem
13 Apr 2017
Forum: MultiCharts
Topic: Rounding before the zero [SOLVED]
Replies: 3
Views: 1188

Rounding before the zero [SOLVED]

Hi all there are some way to round the numbers before the zero? for example, i have the function: TrdQty = IntPortion (Capital / close); this results should be for eg: 3663 but i would like to have 3660 - 3665 etc... i know perfectly the function: JK_Math_RoundToNearest. but that works only for frac...
by waldem
22 Mar 2017
Forum: MultiCharts
Topic: Exclude date in Portfolio backtesting
Replies: 1
Views: 767

Exclude date in Portfolio backtesting

Hallo Team, if i write very simple instruction: if date <> 1161109 then begin, in chart work properly and in Portfolio is ignored.
did you know?
maybe i have different instruction to exclude outlier date?

thank you
Walter
by waldem
14 Feb 2017
Forum: MultiCharts
Topic: portfolio trader windows detached [SOLVED]
Replies: 2
Views: 1241

Re: portfolio trader windows detached [SOLVED]

problem solved.
thank you!
by waldem
14 Feb 2017
Forum: MultiCharts
Topic: portfolio trader windows detached [SOLVED]
Replies: 2
Views: 1241

portfolio trader windows detached [SOLVED]

Hallo Team, on portfolio trader i have all the windows detached, could you tell me how to reattach into "data" space?

thanks
by waldem
22 Dec 2016
Forum: MultiCharts
Topic: 2 question about Portfolio trader [SOLVED]
Replies: 2
Views: 1159

Re: 2 question about Portfolio trader [SOLVED]

thank you so much and merry Christmas to all!!
by waldem
21 Dec 2016
Forum: MultiCharts
Topic: 2 question about Portfolio trader [SOLVED]
Replies: 2
Views: 1159

2 question about Portfolio trader [SOLVED]

Hallo Team, i have 2 questions about portfolio trader with automate order execution. 1 if i have multiple account, how can i select the correct account? 2 when portfolio send order and finish the money of "initial portfolio capital" stop to send order or still send it? is possible to limit the send ...
by waldem
14 Dec 2016
Forum: MultiCharts
Topic: Order disappear
Replies: 8
Views: 2049

Re: Order disappear

thank you so much, unfortunately is my poor non official italian broker, but anyway i never had this problem with previous version.
tomorrow when the problem occour i will send you the help->feedback.
thank you.
by waldem
14 Dec 2016
Forum: MultiCharts
Topic: Order disappear
Replies: 8
Views: 2049

Order disappear

hello team, i'm using one tradingsystem since one year without any problem at all. this is working full day in a dedicated online server0. since I have installed the 10 version build 13626, it happen that MC open trade and during the day the order totally disappear from the chart and MC does not man...
by waldem
07 Dec 2016
Forum: MultiCharts
Topic: Portfolio optimization
Replies: 6
Views: 2151

Portfolio optimization

hallo all, i've noticed that the results coming from optimization have different field from te results coming from backtesting. should be possible to have the same output? in my opinion when i run optimization is very important to have the following column: Avg_Trd Profit Factor Return on account sh...
by waldem
13 Oct 2016
Forum: MultiCharts
Topic: delete order
Replies: 5
Views: 1611

delete order

Hallo, i think that if i am in AA Mode and i'm unfilled but MC think yes, the order remain at broker.
there is the way to delete all orders?
thank you
by waldem
04 Oct 2016
Forum: MultiCharts
Topic: Print true false [SOLVED]
Replies: 4
Views: 1758

Re: Print true false [SOLVED]

Hy Tj,
i mean that normally i use Expert commentary to print my variables like:
Str=Str+" My_Var: "+NumToStr(My_Var,6)+NewLine;

i know that is possible instead of NumToStr to plot variable True/False but i forgot the command to put it in a string.

thanks
by waldem
04 Oct 2016
Forum: MultiCharts
Topic: Print true false [SOLVED]
Replies: 4
Views: 1758

Print true false [SOLVED]

Hi all, i know perfectly the NumtoStr, but i forgot the equivalent to print true/false.
could you help me?
by waldem
20 May 2016
Forum: MultiCharts
Topic: doubt with currentshares
Replies: 4
Views: 1952

Re: doubt with currentshares

probably you are rigth... as usual....
i need to deep investigate.
thanks
by waldem
04 May 2016
Forum: MultiCharts
Topic: doubt with currentshares
Replies: 4
Views: 1952

Re: doubt with currentshares

thank you as usual; GetAppInfo(aiStrategyAuto) should be very useful for me but unfortunately works only with order confirmation, and i never use it.
in automate trading i cannot believe who use order manual confirmation.

shouldn't be modified to get 1 in all the automated cases?
by waldem
29 Apr 2016
Forum: MultiCharts
Topic: esport strategy performance report.
Replies: 1
Views: 963

esport strategy performance report.

hi, in one of my computers i have the performance report non complete, could you tell me where is the settings to have all the field to export?
by waldem
28 Apr 2016
Forum: MultiCharts
Topic: doubt with currentshares
Replies: 4
Views: 1952

doubt with currentshares

hi team, i still have little doubt with currentshares. if i use "sinc" mode and i got partial order fill (for eg. fill 5 instead of 10), currentshares should be 5 correct? therefore in this case is same of marketposition_at_broker rigth? marketposition_at_broker of course does not work in backtest, ...
by waldem
22 Apr 2016
Forum: MultiCharts
Topic: line 0, column 0 never die!!
Replies: 1
Views: 890

line 0, column 0 never die!!

ciao Team, this post just to tell you that today again i have this malicious error: ------ Compiled with error(s): ------ 'If' condition must be followed by the word 'Then' line 0, column 0 i have already solved simply deleting and copy/paste the same code step by step... i think this should be the ...
by waldem
21 Apr 2016
Forum: MultiCharts
Topic: double exit refused
Replies: 5
Views: 1581

Re: double exit refused

the error is that i don't have the rigth to go short in this stock therefore one of 2 order is refused. seems that one of two sell is interpreted like sellshort. or that is not possible to send 2 opposite signal for the same quantity like OCO order. crazy. i will solve simply activating the sell 5 t...
by waldem
21 Apr 2016
Forum: MultiCharts
Topic: double exit refused
Replies: 5
Views: 1581

double exit refused

Hallo team, is never happen to you that when you are long you send togethet target and stop and you receive error from broker because one of 2 order try to go short? it seems to me that in past we already had this discussion but i don't remember where i'm wrong... if marketposition = 1 then Begin SE...
by waldem
21 Apr 2016
Forum: MultiCharts
Topic: Spread Linien [SOLVED]
Replies: 11
Views: 4580

Re: Spread Linien [SOLVED]

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...
by waldem
20 Apr 2016
Forum: MultiCharts
Topic: dom_bidprice can send order?
Replies: 1
Views: 812

dom_bidprice can send order?

Hi Henry, pls see at the code we did together.
do you have idea of why MC send order limit ZERO instead of value of var0 that is printed correctly?
by waldem
20 Apr 2016
Forum: MultiCharts
Topic: view Setprofittarget Setstoploss
Replies: 12
Views: 2984

Re: view Setprofittarget Setstoploss

of course, at this time i forgot to tell you that there was one sell limit and now there are 2 order submitted.
by waldem
20 Apr 2016
Forum: MultiCharts
Topic: view Setprofittarget Setstoploss
Replies: 12
Views: 2984

Re: view Setprofittarget Setstoploss

i see nothing Henry..
maybe some other settings..
by waldem
19 Apr 2016
Forum: MultiCharts
Topic: view Setprofittarget Setstoploss
Replies: 12
Views: 2984

Re: view Setprofittarget Setstoploss

realtime at broker.
i use those commands on future and in other code i usually plot the level on chart just for my feeling.
w.
by waldem
18 Apr 2016
Forum: MultiCharts
Topic: view Setprofittarget Setstoploss
Replies: 12
Views: 2984

Re: view Setprofittarget Setstoploss

yes TJ, i can understand the syntax problem, but anyway for MC always mean a price where to exit, therefore is stubid that i have to recalculate by logical expression to view it..
in TS is a flag that show these keyword.
maybe in future should be possible also in MC.
by waldem
18 Apr 2016
Forum: MultiCharts
Topic: view Setprofittarget Setstoploss
Replies: 12
Views: 2984

Re: view Setprofittarget Setstoploss

also print function seems not work, if i try :
print (Setprofittarget(500));
i get error "incorrect argument".
by waldem
18 Apr 2016
Forum: MultiCharts
Topic: view Setprofittarget Setstoploss
Replies: 12
Views: 2984

view Setprofittarget Setstoploss

hallo team, there is the possibility to view on chart the line of Setstoploss and Setprofittarget like in TS?
i've already tried using function TL_New..... but i receive Line0 error; very strange, only if i put Setstoploss inside on Trendline...

you should think to visualize it in the future?
by waldem
15 Apr 2016
Forum: MultiCharts
Topic: LastBarOnChart_s = True [SOLVED]
Replies: 7
Views: 3215

Re: LastBarOnChart_s = True [SOLVED]

today after milions of try i have understand the problem and in my personal opinion have no sense; even if you have the recalc or not, when you apply any strategy to one chart, MC need to register one exchange, one new bar on chart; after this you can apply whatever you whant for the rest of the day...
by waldem
14 Apr 2016
Forum: MultiCharts
Topic: LastBarOnChart_s = True [SOLVED]
Replies: 7
Views: 3215

Re: LastBarOnChart_s = True [SOLVED]

very simple, sometimes it happen that i press "SA" button and i don't go in the book, simply nothing happen. i'm still investigating if is recalc problem, MC problem, broker, plugin, i don't know. what is strange is that MC does not send anything, normally if is broker problem i should receive any e...
by waldem
14 Apr 2016
Forum: MultiCharts
Topic: LastBarOnChart_s = True [SOLVED]
Replies: 7
Views: 3215

Re: LastBarOnChart_s = True [SOLVED]

Thank you TJ, i cannot understand why sometimes i don't go to the market..

are ok my properties in your opinion?

some other settings to do?

or maybe is my brocker problem.

thanks again..
by waldem
14 Apr 2016
Forum: MultiCharts
Topic: LastBarOnChart_s = True [SOLVED]
Replies: 7
Views: 3215

LastBarOnChart_s = True [SOLVED]

Hallo, someone could explain me what does it mean exhactly this keyword? i cannot find it. i have problem with simple code: if (LastBarOnChart_s = True) then begin RecalcLastBarAfter(0.001); if marketposition<>1 then buy next bar at insidebid limit; end; the problem is that if book is very liquid li...
by waldem
13 Apr 2016
Forum: MultiCharts
Topic: position on book
Replies: 1
Views: 938

position on book

Hallo Team, there is any powerlanguage keywords that give me back the information on which level of book i am? i have one problem using insidebid: if i use the instruction insidebid + 1*tick to be first on book, after recalculation i'm the first and MC go ahed of one thick trying to overpass myself....
by waldem
08 Apr 2016
Forum: MultiCharts
Topic: value more than insidebid [SOLVED]
Replies: 5
Views: 1929

Re: value more than insidebid [SOLVED]

thank you, i tried and it works. strange things is that if i plot only one bid or ask work, if i try to plot both i get same argument error, but maybe is broker problem. variables: var0(0),var1(0); if (LastBarOnChart_s = True) then begin RecalcLastBarAfter(0.1); if dom_isconnected then var0 = dom_bi...
by waldem
08 Apr 2016
Forum: MultiCharts
Topic: value more than insidebid [SOLVED]
Replies: 5
Views: 1929

Re: value more than insidebid [SOLVED]

hallo, why if i do a simple print: Print (dom_askprice(2)); i got error "Invalid Argument"?
by waldem
07 Apr 2016
Forum: MultiCharts
Topic: value more than insidebid [SOLVED]
Replies: 5
Views: 1929

value more than insidebid [SOLVED]

Hallo team, should be possible to have the keyword " second bid" 3rd bid" etc?
today if i'm correct only insidebid/ask exist with the best, i would like to know also the other level.

should be possible require this for the next release?
by waldem
05 Apr 2016
Forum: MultiCharts
Topic: Market Scanner update [SOLVED]
Replies: 4
Views: 1824

Re: Market Scanner update [SOLVED]

That's perfect! i never seen Henry's answer but was what i looking for.
thank you!
by waldem
04 Apr 2016
Forum: MultiCharts
Topic: Market Scanner update [SOLVED]
Replies: 4
Views: 1824

Re: Market Scanner update [SOLVED]

Hallo ABC, thank you, i use this function and i knows perfectly and is exhactly the reason of my question. As far as i know it cannot works in Market scanner because to be used in system you need also to set Intrabarordergeneration that not exhist in Market Scanner but forcely is updated every thick...
by waldem
04 Apr 2016
Forum: MultiCharts
Topic: Expert Commentary plotted many times [SOLVED]
Replies: 1
Views: 1130

Expert Commentary plotted many times [SOLVED]

hallo team, is the complete day that all the Expert commentary comes plottet 4 times, someone of you knows this problem?
in past i had solved but i can't remember how.
thanks
by waldem
01 Apr 2016
Forum: MultiCharts
Topic: Market Scanner update [SOLVED]
Replies: 4
Views: 1824

Market Scanner update [SOLVED]

Hallo sir, i ask you the possibility to update the Market scanner not every tick but in continuous every time that bid or ask change.
i have created one MS with bid,ask and spread ask-bid but obviously is in delay.

thank you.
by waldem
22 Mar 2016
Forum: MultiCharts
Topic: follow the Bid
Replies: 6
Views: 1456

Re: follow the Bid

thank you TJ for your precious support. for the MC developers: shouldn't possible to think for next release make the way to recalculate the strategy by timing that the user can put in TAB, like sort of loop? or other way have a continuous chart updated every millisecods even if nothing happen in mar...
by waldem
22 Mar 2016
Forum: MultiCharts
Topic: follow the Bid
Replies: 6
Views: 1456

Re: follow the Bid

tick chart resolution, provider is italian and not in MC panel..
but time recalculate should be independent from chart isn't it?
by waldem
22 Mar 2016
Forum: MultiCharts
Topic: follow the Bid
Replies: 6
Views: 1456

Re: follow the Bid

TJ you are rigth! i found mistake in other place of code sorry for that.
but anyway the function RecalcLastBarAfter(0.1) seems to me that is not working, MC always update every thick not every millisecond.

time recalculate is really possible?
by waldem
22 Mar 2016
Forum: MultiCharts
Topic: follow the Bid
Replies: 6
Views: 1456

follow the Bid

hallo team, should be possible to follow the bid on book? i have tried to use this function: if (LastBarOnChart_s = True) then begin buyReferencePrice = insidebid; sellReferencePrice = insideask; RecalcLastBarAfter(0.1); end; but i got exception error. is really possible to ask MC to recalculate the...
by waldem
15 Mar 2016
Forum: MultiCharts
Topic: symbol exchange scanner/portfolio
Replies: 5
Views: 4732

symbol exchange scanner/portfolio

Hallo Team, should be possible in some way to export and reimport symbols from market scanner to Portfolio Backtester?

could you study for the future the possibility to do simply copy/paste???

thank you
by waldem
25 Feb 2016
Forum: MultiCharts
Topic: TD Sequential [SOLVED]
Replies: 1
Views: 1345

TD Sequential [SOLVED]

hallo all, someone of you have TD sequential code?
i know is no more sellable therefore i think is not forbid to share.
thank you.
by waldem
06 Feb 2016
Forum: MultiCharts
Topic: Record historical data. [SOLVED]
Replies: 8
Views: 3249

Re: Record historical data. [SOLVED]

hallo Team, i reply to this very old topic because recently something very strange happen to my MC. i have 2 MC license in 2 different machine "Windows 10" and "Windows Server 2012". on both if i let MC open the complete day from 7am to 22pm, the close procedure always fail; that mean that the proce...
by waldem
27 Jan 2016
Forum: MultiCharts
Topic: TS function
Replies: 1
Views: 790

TS function

Hallo Team,
is forecasted to implement in MC the TS functions "MarketOrder" and "RunCommand"?
or maybe is possible to import it?

thank you
by waldem
07 Jan 2016
Forum: MultiCharts
Topic: Limit order backtesting assumption in portfolio.
Replies: 2
Views: 2580

Limit order backtesting assumption in portfolio.

Dear MC team, i have one big problem with portfolio backtesting: I have intraday (15 min.) TS that works with order long Low - 5 tick "limit" and is generating very good equity and performance. of course it could be that a lot of that buy are exactly in lowest point of bar, therefore i press the bac...
by waldem
10 Nov 2015
Forum: MultiCharts
Topic: understanding at market order [SOLVED]
Replies: 2
Views: 1423

Re: understanding at market order [SOLVED]

thank you so much that was the answer i was looking for.
i was referring to real time.
thanks
by waldem
10 Nov 2015
Forum: MultiCharts
Topic: understanding at market order [SOLVED]
Replies: 2
Views: 1423

understanding at market order [SOLVED]

hallo team, i would like to better clarify the "At Market" sell order. i have already read your wiki page: https://www.multicharts.com/trading-software/index.php/Sell but i still have doubt. you wrote: A Sell Arrow will be placed at the next bar's Open tick. but if open bar is equal to open day, and...
by waldem
15 Oct 2015
Forum: MultiCharts
Topic: get data2 in market scanner [SOLVED]
Replies: 8
Views: 7257

Re: get data2 in market scanner [SOLVED]

yes, probably 10 votes around the world are not enough for the staff.

hopefully they simply forget and we remind..

MC staff, this is possible to implement in next version?
by waldem
15 Oct 2015
Forum: MultiCharts
Topic: get data2 in market scanner [SOLVED]
Replies: 8
Views: 7257

Re: get data2 in market scanner [SOLVED]

hallo, i have voted this suggestion because i think is important.

why seems cancelled?

do you think to implement this feature?

thanks
by waldem
09 Sep 2015
Forum: MultiCharts
Topic: volume realtime scanner
Replies: 2
Views: 1407

Re: volume realtime scanner

hallo all, i wrote again because i think there is one error in market scanner. seems that is impossible to get the yesterday volume. if i do simply: Plot1( volume[1] , "Volume yesterday" ); i got the volume of 2 days ago. if i do: Plot1( volume , "Volume yesterday" ); i got the correct yesterday vol...
by waldem
08 Sep 2015
Forum: MultiCharts
Topic: volume realtime scanner
Replies: 2
Views: 1407

volume realtime scanner

Hallo team, i vould like to check the current intraday_volume with yesterday close volume.
this is possible in RT scanner? or is possible only using Data2 in your opinion?
Data2 is still unavailable for Scanner?

thank you
by waldem
04 Sep 2015
Forum: MultiCharts
Topic: @power
Replies: 4
Views: 1672

Re: @power

hi TJ, I found it in Kaufman AMA: [LegacyColorValue = TRUE]; inputs:period(10),price(c); vars: noise(0),signal(0),difference(0),efratio(0), smooth(1),fastend(.666),slowend(.0645),AMA(0); {CALCULATE EFFICIENCY RATIO} difference = @AbsValue(price - price[1]); if(currentbar <= period) then AMA = price;...
by waldem
03 Sep 2015
Forum: MultiCharts
Topic: @power
Replies: 4
Views: 1672

@power

hallo all, someone could tell me the explanation of @power function?
i cannot find any wiki..
thank you
by waldem
29 Jul 2015
Forum: MultiCharts
Topic: Volume dn [SOLVED]
Replies: 1
Views: 1814

Volume dn [SOLVED]

hanno all, it is normal that i plot volume up and volume dn but volumedn works only from now to the future instead volume up is correctly plotted also in the past?
by waldem
11 Jul 2015
Forum: MultiCharts
Topic: MULTICHARTS 9.1 BETA 1
Replies: 82
Views: 34590

Re: MULTICHARTS 9.1 BETA 1

hallo team, i've noticed that in GV included on new version does not exist any more the keywords: GVSetNamedDouble - GVGetNamedDouble.
since i have one strategy with this i have integrated from old GV 2.2.
it is something that you know?
by waldem
12 Feb 2015
Forum: MultiCharts
Topic: Dinamic order on DOM
Replies: 5
Views: 1290

Re: Dinamic order on DOM

in DOM is possible to place dinamic order like bestbid+1tick? Hello waldem, That is possible to create a Keyboard Shortcut for placing such order. In Keyboard Shortcuts go to Trading.Custom category to do that. no, i mean that the bestbid follow the price remaining always at first position. i have ...
by waldem
11 Feb 2015
Forum: MultiCharts
Topic: Dinamic order on DOM
Replies: 5
Views: 1290

Re: Dinamic order on DOM

why i press "lookup" button but i cannot insert any simbol in dom?
by waldem
11 Feb 2015
Forum: MultiCharts
Topic: Dinamic order on DOM
Replies: 5
Views: 1290

Dinamic order on DOM

hallo all, in DOM is possible to place dinamic order like bestbid+1tick?
or is better to create one strategy and apply in tick graph?
by waldem
09 Feb 2015
Forum: MultiCharts
Topic: Record historical data. [SOLVED]
Replies: 8
Views: 3249

Re: Record historical data. [SOLVED]

hallo all, thank you for the answer but one thing is still not clear to me after read the wiki. the Quote manager must stay always open to collect the data or is enough to have open the MC? since my brocker allow the "download historical data" is enough if i open and close the quote manager once per...
by waldem
07 Feb 2015
Forum: MultiCharts
Topic: Description on market scanner [SOLVED]
Replies: 2
Views: 1233

Re: Description on market scanner [SOLVED]

yes, that's perfect!
thanks a lot Josh!
Walter
by waldem
06 Feb 2015
Forum: MultiCharts
Topic: Description on market scanner [SOLVED]
Replies: 2
Views: 1233

Description on market scanner [SOLVED]

Hallo Team, should be possible to insert the "description" field in market scanner?
At the moment i'm able to insert only the Symbol.

thank you all.
by waldem
04 Feb 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

Re: MarketPosition at Broker for The Strategy [SOLVED]

also if i put in AA mode the entryprice is ZERO, that make no sense for me.
how could i get this value from broker?

i read in this answer that entryprice should work therefore maybe i will contact you in chat to see my problem.

viewtopic.php?f=1&t=15952
by waldem
04 Feb 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

Re: MarketPosition at Broker for The Strategy [SOLVED]

Hallo Andrew, i have thought a lot on your words and finally is quite clear how to synchronize, but i still have one doubt: all my target or stop level are based on entryprice, but the entryprice function is impossible to retrieve from broker. for eg. my Target is: TargetLL = JK_Math_RoundToNearest ...
by waldem
29 Jan 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

Re: MarketPosition at Broker for The Strategy [SOLVED]

thank you, is very clear. now, if i would like to put one target for half of position, the command "currentshares" is able to read the position at blroker? if not should be corret something like: if marketposition_at_broker <> 0 then begin Sell ("LTprof") marketposition_at_broker/2 shares next bar a...
by waldem
28 Jan 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

Re: MarketPosition at Broker for The Strategy [SOLVED]

Hi Andrew, thanks. yes is an auto trading strategy, you can see from the picture that i'm using in RT, the problem is that is working with new order, but as before i cannot sincronyze after nigth stop. i've tried to apply you portion of code to print the order status, but i cannot understand why: 1 ...
by waldem
27 Jan 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

Re: MarketPosition at Broker for The Strategy [SOLVED]

i've seen that if i turn on the strategy it works something.
MarketPosition at Broker is correctly 868 instead MarketPosition at Broker for The Strategy is still zero.
by waldem
27 Jan 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

Re: MarketPosition at Broker for The Strategy [SOLVED]

hallo all, i am very sorry, but i still cannot understand. someone could make me a bit training session pls, i'm very sad! :( first of all, as you can see in image attached, i'm long since yesterday with 868 stocks but i cannot retrieve this to the brocker. MarketPosition_at_broker_for_the_Strategy ...
by waldem
23 Jan 2015
Forum: MultiCharts
Topic: 24 hour connection
Replies: 7
Views: 1900

Re: 24 hour connection

yes, you got the question perfectly!

thanks for the reply, i did the settings and i will try soon as one overnight occour.

walter
by waldem
23 Jan 2015
Forum: MultiCharts
Topic: 24 hour connection
Replies: 7
Views: 1900

Re: 24 hour connection

Thank you all, i will look for IB topic: my broker is not IB but an italian broker. i don't know if i will solve simply using: "The Show Always box should be checked to get the Assign the Initial Market Position Dialogue every time the automation is enabled, no matter what is the strategy position b...
by waldem
22 Jan 2015
Forum: MultiCharts
Topic: MarketPosition at Broker for The Strategy [SOLVED]
Replies: 13
Views: 4394

MarketPosition at Broker for The Strategy [SOLVED]

hallo, i cannot understend completely this command.

shouldn't be better "MarketPosition at Broker for The SYMBOL"?

if i have the same strategy running in more instruments one flat and the secon at market, maybe i got 1 as results even if i'm flat on this specific instrument?
by waldem
22 Jan 2015
Forum: MultiCharts
Topic: 24 hour connection
Replies: 7
Views: 1900

Re: 24 hour connection

probably i solve if i put a control that save in variable like:
if MarketPosition_at_Broker <> 0 then MP = MarketPosition_at_Broker;
by waldem
22 Jan 2015
Forum: MultiCharts
Topic: 24 hour connection
Replies: 7
Views: 1900

24 hour connection

hallo team,
unfortunately my brocket doesn't allow the 24 hour connection but they broke it every midnigth, therefore i have to restart every morning.

in case of myltiple day order, should MC retrieve the open position at broker and understand if is already in position?
by waldem
21 Jan 2015
Forum: MultiCharts
Topic: Record historical data. [SOLVED]
Replies: 8
Views: 3249

Re: Record historical data. [SOLVED]

thank you, i never knew.
i have tried now.

bye
by waldem
21 Jan 2015
Forum: MultiCharts
Topic: Record historical data. [SOLVED]
Replies: 8
Views: 3249

Record historical data. [SOLVED]

hallo all, it is possibile in some way to record the historical data?

my broker allow only 3 months in intraday, but i would like to record these datas every day and attach in cue to their datafeed.

should be good idea for future implementation?
by waldem
21 Jan 2015
Forum: MultiCharts
Topic: Visual order when use the tradingsystem
Replies: 3
Views: 1105

Re: Visual order when use the tradingsystem

yes, "show open position" and "Show active order" are enabled on both the pc.
thanks
by waldem
21 Jan 2015
Forum: MultiCharts
Topic: Visual order when use the tradingsystem
Replies: 3
Views: 1105

Visual order when use the tradingsystem

Hallo Team.
could you explain me why when i use the tradingsystem, i see the visual order, instead my friend using 1 my workspace 2 my system 3 same broker don't see the visual order?
also he have always the "Chart Trading" windows always open.

maybe some settings somewhere?

thank you.
by waldem
17 Jan 2015
Forum: MultiCharts
Topic: 2 multicharts together with different user
Replies: 1
Views: 891

2 multicharts together with different user

Hallo all, my question is: should i run 2 times the same MC with different user in same pc? i have one server with a Friend and we would like to run 2 MC (with different user) in same server; i have created 2 user in server, but in this case if i run the 2 MC together in your opinion should create c...
by waldem
09 Oct 2014
Forum: MultiCharts
Topic: Explaining Video of new implement code.
Replies: 1
Views: 734

Explaining Video of new implement code.

Hallo MC tem, i think that the new code implementation http://www.multicharts.com/trading-software/index.php/Portfolio_Trader_Strategy_Examples are so powerful and important, but only following the wiki i cannot understand. Should be possible to require a video that explain how implement this strate...
by waldem
06 Oct 2014
Forum: MultiCharts
Topic: Problem with esignal datafeed.
Replies: 8
Views: 4103

Re: Problem with esignal datafeed.

now is monday morning, new week bar is open and finally i can get the close of October 03, this is amazing....
by waldem
05 Oct 2014
Forum: MultiCharts
Topic: Problem with esignal datafeed.
Replies: 8
Views: 4103

Re: Problem with esignal datafeed.

Hallo Bensat, i cannot do Update On Every Tick because is a strategy not indicator.

Hallo all, today is sunday and i still cannot get the last friday close, this should be an error.
pls see in attached picture the date of my pc.

on monday i will contact MC developer on chat.
by waldem
04 Oct 2014
Forum: MultiCharts
Topic: Problem with esignal datafeed.
Replies: 8
Views: 4103

Re: Problem with esignal datafeed.

Hi fomtl, i wrote the post when the week was finish and the bar already close, i'm writing in European time. if i put again the system today that is saturday, the week is close and i cannot get the last close, this is an error in my opinion. if i use metastock data it works. dear MC developer, as wr...
by waldem
03 Oct 2014
Forum: MultiCharts
Topic: Problem with esignal datafeed.
Replies: 8
Views: 4103

Re: Problem with esignal datafeed.

I forgot to tell you that i'm using Adidas correctly plot in chart, you can see the picture.
by waldem
03 Oct 2014
Forum: MultiCharts
Topic: Problem with esignal datafeed.
Replies: 8
Views: 4103

Problem with esignal datafeed.

Hallo MC team, i have a severe problem using esignal as datafeed. i'm using weekly bars and i really cannot understand why my strategy cannot recognize the last bar even if the market is close. today is October 03 and if i plot on chart a very simple code: var:MyDate (0); //Debug if currentbar = 1 t...
by waldem
03 Oct 2014
Forum: MultiCharts
Topic: Time stop in 3 line break charts
Replies: 4
Views: 1466

Re: Time stop in 3 line break charts

hi TJ,
sessend variable is set to 1725, our market close at 1730 local time.

the 3 line break chart is set to 3 line break resolution 2 minute
by waldem
02 Oct 2014
Forum: MultiCharts
Topic: Time stop in 3 line break charts
Replies: 4
Views: 1466

Time stop in 3 line break charts

Hallo all, i'm writing a system intraday using 3 line break chart. i'm trying to setup a funcion to close the operation at 17.25 (5 minutes before end in European time) using the following code: If time >=SessEnd and Marketposition<0 Then BuytoCover ("STime") currentshares shares this bar on close; ...
by waldem
25 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Re: Weekly open [SOLVED]

TJ, you are a genius!
thank you so much, i would never thought about that simple solution....

Walter
by waldem
24 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Re: Weekly open [SOLVED]

Please give me the piece of code that prints the values. Henry, this is the extracted code for you (Data 1 weekly, Data2 Dayly): input: Capital (10000),LChnEn(5); vars: TrdQty (0), Bar2 (0),MyDate (0),EP(0); //ENTRY if marketposition = 0 and C >= Highest(H[1],LChnEn) then begin TrdQty = IntPortion(...
by waldem
24 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Re: Weekly open [SOLVED]

maybe i have solved with this string:
if dayofweek (date of data2) = monday then EP = open of data2;
::
What happens if Monday is a holiday?
you are rigth, therefore i need to do a counter of the Data2 to solve this.
i will try in the next days...
w.
by waldem
24 Sep 2014
Forum: MultiCharts
Topic: line break on Portfolio
Replies: 2
Views: 902

line break on Portfolio

hi, should be possible to have different from regular chart on Portfolio backtesting?

for example line break?
by waldem
23 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Re: Weekly open [SOLVED]

maybe i have solved with this string:

if dayofweek (date of data2) = monday then EP = open of data2;

i cannot understand why if i use it, the last buy disappear from the chart...

but anyway in print still remain...

walter
by waldem
23 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Re: Weekly open [SOLVED]

Thanks a lot Andrew, now the functionality is much more clear for me. should i ask you if i can calculate only one variable on IOG? the problem is that if i use IOG for all the code the entry is completely different because i look for close. why i cannot use for exhample IntraBarPersist to calculate...
by waldem
23 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Re: Weekly open [SOLVED]

thanks for the reply, i have tried even with "bar magnifier" than with intrabarordergeneration.

if i use intrabarordergeneration the day will be multiplied by 4 in print and the strategy enter in different bar.

i think is working only with tick not with daily..

walter
by waldem
23 Sep 2014
Forum: MultiCharts
Topic: Weekly open [SOLVED]
Replies: 14
Views: 2781

Weekly open [SOLVED]

Hall all, i cannot solve this problem: i have weekly bar strategy, the strategy start the trade on monday at open; therefore I need to get on monday the open value (=to Entryprice) to calculate the stop and targets. i cannot understand why even the expert commentary than the function Print, doesn't ...
by waldem
28 Feb 2014
Forum: MultiCharts
Topic: EXCEPTION Error
Replies: 5
Views: 3862

Re: EXCEPTION Error

hallo, thank you, this is a good method when you have single chart, even if when you have very long code is complex to find the bad variable.

in any case this does not work for portfolio, is not possible for you to state which is the stock with error that i can simply delete from portfolio?
by waldem
27 Feb 2014
Forum: MultiCharts
Topic: EXCEPTION Error
Replies: 5
Views: 3862

EXCEPTION Error

hallo all, sometime I got the "Exception error" on my Portfolio Backtester. should be possible to have in the error windows the name of the stocks that cause the problem? this because if you have a big list of stocks is very complicated understand which one have problem and discard it. there is one ...
by waldem
19 Feb 2014
Forum: MultiCharts
Topic: Portfolio WFA
Replies: 3
Views: 1409

Re: Portfolio WFA

thank you Andrew.
i have tried but i don't know how to vote :)))))

i have pressed vote but the number are always 10...
by waldem
19 Feb 2014
Forum: MultiCharts
Topic: Portfolio WFA
Replies: 3
Views: 1409

Portfolio WFA

Hallo, I'm new in MC and in this forum.

I would like to ask at MC team if is forecast in future to have WFA in portfolio backtester.

Single wfa is not so significant for me..

Thank you so much.

Bye
by waldem
10 Dec 2013
Forum: MultiCharts
Topic: Question Portfolio Backtester Initial portfolio capital.
Replies: 1
Views: 1011

Question Portfolio Backtester Initial portfolio capital.

Hallo MC staff, i have question concerning portfolio backtesting. Should be possible in some way the restart each year the capital to the initial amount? I explain: if i start to work with 100000$ in 10 year of testing, and i have fixed to 10000 dollar amount per trade, i will be after 10 years of t...

Go to advanced search