Search found 213 matches

by turbofib
14 Aug 2023
Forum: MultiCharts
Topic: order to execute code in optimization
Replies: 2
Views: 322

order to execute code in optimization

hi, i try to execute this simple code (it's a function called in signal) var:index(0); once ( getappinfo(aioptimizing) = 1 ) begin index=Random(4); print(" _ ",index); end; if LastBarOnChart then begin print("**",index); end; output: _ 3.71 _ 3.82 _ 1.60 ** 3.82 ** 3.71 ** 1.60 i dont' understand th...
by turbofib
27 May 2023
Forum: MultiCharts
Topic: Keyreserver for feed
Replies: 1
Views: 260

Keyreserver for feed

Hi. It's possibile to.use keyreserved to know about feed
by turbofib
26 May 2023
Forum: MultiCharts
Topic: ELL COLLECTION AND MANUAL
Replies: 0
Views: 294

ELL COLLECTION AND MANUAL

hi where can i download the ell colection library and its manual how to use thanks
by turbofib
31 Jan 2023
Forum: MultiCharts
Topic: how to know filled price?
Replies: 2
Views: 426

Re: how to know filled price?

Hi... i.use aa mode
by turbofib
24 Jan 2023
Forum: MultiCharts
Topic: HOW TO CODE THE CANDLE HOLE IN THE GRAPH
Replies: 3
Views: 440

Re: HOW TO CODE THE CANDLE HOLE IN THE GRAPH

Thanks...
But if i want to solve it using code...how can i do it ?
by turbofib
24 Jan 2023
Forum: MultiCharts
Topic: HOW TO CODE THE CANDLE HOLE IN THE GRAPH
Replies: 3
Views: 440

HOW TO CODE THE CANDLE HOLE IN THE GRAPH

CANDELE VUOTO.png
(26.53 KiB) Not downloaded yet
by turbofib
19 Jan 2023
Forum: MultiCharts
Topic: how to know filled price?
Replies: 2
Views: 426

how to know filled price?

the strategy executes at a price of "x" but the order enters at a price "y" due to slippage...is it possible to know the broker's load price via code? what instruction should i use? thank you
by turbofib
08 Dec 2022
Forum: MultiCharts
Topic: oprder stop limit...it's a bug?
Replies: 3
Views: 503

Re: oprder stop limit...it's a bug?

Hi turbofib, Once the stop price is reached, the stop-limit order becomes a limit order to buy (or sell) at the limit price or better. You can try to increase the Limit offset, or use Stop orders. Why does using the stop limit make me change the backtest? the differences should only be with live tr...
by turbofib
23 Nov 2022
Forum: MultiCharts
Topic: oprder stop limit...it's a bug?
Replies: 3
Views: 503

oprder stop limit...it's a bug?

hi..i code it : input:Stop_StopLimit_12(1); if Stop_StopLimit_12=1 then begin buy next bar at highd(1) stop ; sellshort next bar at lowd(1) stop; end; if Stop_StopLimit_12=2 then begin buy next bar at highd(1) stop highd(1)*1.005 limit; sellshort next bar at lowd(1) stop lowd(1)*0.995 limit; end; an...
by turbofib
18 Sep 2022
Forum: MultiCharts
Topic: HI, want to add interval at time
Replies: 1
Views: 464

HI, want to add interval at time

Example: time interval chart is 5 minutes

TimeInterval= 5 minutes
Start Time =2300

startTime + TimeInterval*15 = 2300 + 5*15(1 hours and 15 minutes) = 00: 15 minutes
by turbofib
03 Aug 2022
Forum: MultiCharts
Topic: how reserved word to code brek trendline?
Replies: 3
Views: 598

Re: how reserved word to code brek trendline?

Hi,

You can find all reserved words related to trendline in this section.
Hi, I haven't find it (how to code if price break trendline or not )
by turbofib
02 Aug 2022
Forum: MultiCharts
Topic: how reserved word to code brek trendline?
Replies: 3
Views: 598

how reserved word to code brek trendline?

hi, i want to code the break trendline (see pics)

i code the trendline using tl_new_BN
by turbofib
02 Aug 2022
Forum: MultiCharts
Topic: The highest bar of n day ago [SOLVED]
Replies: 3
Views: 738

Re: The highest bar of n day ago [SOLVED]

There is an internal function - Highest(price, length) you may use.
But i use chart intraday
by turbofib
01 Aug 2022
Forum: MultiCharts
Topic: The highest bar of n day ago [SOLVED]
Replies: 3
Views: 738

The highest bar of n day ago [SOLVED]

hi, i want to know The highest bar of n day ago
which code can i use ? (I use chart intraday not daily)
by turbofib
22 May 2022
Forum: MultiCharts
Topic: use variable string in plot
Replies: 0
Views: 503

use variable string in plot

hi,
plot55(close,"ciao"); ========> it is OK!

but if i code it:

str="ciao";
plot55(close,str);

it give me the follow error:" Wrong plot name or missed "
by turbofib
06 May 2022
Forum: MultiCharts
Topic: search maxinum value in array
Replies: 2
Views: 569

search maxinum value in array

hi,
array:mm[500];

I wanted to know the maximum value in an array without using the for loop

I would like to find the fastest method possible
by turbofib
14 Apr 2022
Forum: MultiCharts
Topic: Dra Trendline on data2 using signal [SOLVED]
Replies: 2
Views: 541

Re: Dra Trendline on data2 using signal [SOLVED]

Tl_new_bn(Bar1,high1 of data2,Bar2,High2 of data2) data2 ======> this is correctly..now is ok! thank you
by turbofib
13 Apr 2022
Forum: MultiCharts
Topic: Dra Trendline on data2 using signal [SOLVED]
Replies: 2
Views: 541

Dra Trendline on data2 using signal [SOLVED]

Hi, is possible to draw Trendline on data2 in a signal?
i try to code it : Tl_new_bn(Bar2,high,Bar2,High)Data2 but it does not work
by turbofib
27 Dec 2021
Forum: MultiCharts
Topic: "print" sometimes doesn't work [SOLVED]
Replies: 4
Views: 827

Re: "print" sometimes doesn't work [SOLVED]

Now the problem is solved .. when he comes back to do it again I'll call you back
by turbofib
23 Dec 2021
Forum: MultiCharts
Topic: "print" sometimes doesn't work [SOLVED]
Replies: 4
Views: 827

Re: "print" sometimes doesn't work [SOLVED]

I removed the indicator and put it back ... no output
To get it to work correctly I had to run the script on another chart .. after it all worked correctly
i think it is a bug of MC.
by turbofib
22 Dec 2021
Forum: MultiCharts
Topic: "print" sometimes doesn't work [SOLVED]
Replies: 4
Views: 827

"print" sometimes doesn't work [SOLVED]

In the following pics I show the execution of the print code where there is no output
by turbofib
20 Dec 2021
Forum: MultiCharts
Topic: probem Holiday with data1 and data2
Replies: 3
Views: 499

Re: probem Holiday with data1 and data2

Hello turbofib, There is no direct way to do that. You can determine whether there was a working day or a holiday according to the bar's date. Here's a basic example you can refer to: var: weekend(true); var: weekday(0); weekend = DayOfWeekFix(date) > 5; weekday = DayOfWeekFix(date); if(not weekend...
by turbofib
17 Dec 2021
Forum: MultiCharts
Topic: probem Holiday with data1 and data2
Replies: 3
Views: 499

probem Holiday with data1 and data2

hi, the day after the holiday how can I code that the day before on data1 there was no data and on date2 yes?
by turbofib
07 May 2021
Forum: MultiCharts
Topic: how know dayofWeeK of N day ago
Replies: 2
Views: 468

Re: how know dayofWeeK of N day ago

ok ..i try it

dayofweek(datetojulian(JulianToDate(date)-x))

x=1,2,3 day ago
by turbofib
07 May 2021
Forum: MultiCharts
Topic: how know dayofWeeK of N day ago
Replies: 2
Views: 468

how know dayofWeeK of N day ago

hi ,i want to know dayofweek of 1,2,3 day ago
it's possible to code it? thank you
by turbofib
29 Dec 2020
Forum: MultiCharts
Topic: Entry live in close session...it's possibile?
Replies: 6
Views: 954

Re: Entry live in close session...it's possibile?

ok ..i try your solution
thanks
by turbofib
29 Dec 2020
Forum: MultiCharts
Topic: Entry live in close session...it's possibile?
Replies: 6
Views: 954

Re: Entry live in close session...it's possibile?

Thanks for the reply...
I thought of this alternative but are you sure that by writing:
"
slb = sessionlastbar;
if slb [1] then buy next bar market; "
does it go live in the last minute? according to me it does the beginning of a new session
by turbofib
28 Dec 2020
Forum: MultiCharts
Topic: Entry live in close session...it's possibile?
Replies: 6
Views: 954

Re: Entry live in close session...it's possibile?

Yes it is possible. But FIRST you must get your chart to align with your mind. Your mind says ONE-minute analysis. But your chart is geared for 15 minute interval. What gives? Ok..i've problem to write in english... I ask you this question: it's possible to entry in position at close session? give ...
by turbofib
28 Dec 2020
Forum: MultiCharts
Topic: Entry live in close session...it's possibile?
Replies: 6
Views: 954

Entry live in close session...it's possibile?

hi, i use chart 15 minutes interval and i want to buy the last minute of session ..
it's possibile? how can i code it? thank you
by turbofib
27 May 2020
Forum: MultiCharts
Topic: problem SessionLastBar[1]
Replies: 1
Views: 738

problem SessionLastBar[1]

HI,

are you arare of the problem to use "SessionLastBar[1]" ? every so often wrong.... how can i replace it?
by turbofib
22 May 2020
Forum: MultiCharts
Topic: write number trendline in the visibe chart
Replies: 2
Views: 832

write number trendline in the visibe chart

hi, look this pics


how can i write fan number in visible chart?

it'are trendline... i use this code to write it: value1=Text_new(date,time,value1,"...");
but it's impossible to use it if the trendline finish out of chart
by turbofib
21 May 2020
Forum: MultiCharts
Topic: stop and limit together
Replies: 2
Views: 895

stop and limit together

hi,
it's possible to to this:

sell next bar at stopLong stop;
sell next bar at takeprofLong limit;



are they both run or only the second?
by turbofib
11 May 2020
Forum: MultiCharts
Topic: an incomprehensible problem
Replies: 11
Views: 2498

Re: an incomprehensible problem

hi josh, i set maxbarsback not from code but in the property strategy
by turbofib
09 May 2020
Forum: MultiCharts
Topic: Arraysize]: how i use it?
Replies: 1
Views: 724

Arraysize]: how i use it?

hi, i need to resize array but i look documentation and i don't find any information
by turbofib
08 May 2020
Forum: MultiCharts
Topic: an incomprehensible problem
Replies: 11
Views: 2498

Re: an incomprehensible problem

ok thanks for the information ... but you are running away from the main problem I repeat my problem: Indicator: var:pass(false); if pass then begin //=======================> IT'S FALSE!!! Canc_MOTORE(highs(0),lows(0)); end; Function: input:RHighh(Numericsimple), RLoww(Numericsimple); var:RHigh(0),...
by turbofib
07 May 2020
Forum: MultiCharts
Topic: an incomprehensible problem
Replies: 11
Views: 2498

Re: an incomprehensible problem

does anyone else understand why?
by turbofib
07 May 2020
Forum: MultiCharts
Topic: an incomprehensible problem
Replies: 11
Views: 2498

Re: an incomprehensible problem

"if condition1=true then" or "if conditio1 then " is the same result!
by turbofib
07 May 2020
Forum: MultiCharts
Topic: an incomprehensible problem
Replies: 11
Views: 2498

Re: an incomprehensible problem

Syntax error !

Code: Select all

if Condition1= False then
will work better ...
:x :x :?

if you try it:

INPUT:CONDITION1(false);

if CONDITION1 then begin
Canc_MOTORE(highs(0),lows(0));
end;
the result is egual
by turbofib
06 May 2020
Forum: MultiCharts
Topic: an incomprehensible problem
Replies: 11
Views: 2498

an incomprehensible problem

hi, look this indicator: INDICATOR if false then begin //=======================> IT'S FALSE!!! Canc_MOTORE(highs(0),lows(0)); end; FUNCTION input:RHighh(Numericsimple), RLoww(Numericsimple); var:RHigh(0),RLow(0); RHigh=RHighh; RLow=RLoww; print(date,time," hallo!!! "); if Rlow<Rlow[1] then BEGIN {C...
by turbofib
23 Apr 2020
Forum: MultiCharts
Topic: time execution
Replies: 1
Views: 651

time execution

hi, it's possible to to measure code execution time?
what word reserved i can to use?
by turbofib
22 Apr 2020
Forum: MultiCharts
Topic: recursive functions
Replies: 1
Views: 622

recursive functions

hi, powerlanguage support recursive functions?

if true what reserve word i use to exit loop?

thank you
by turbofib
21 Apr 2020
Forum: MultiCharts
Topic: sort arrays but keeping track of the location
Replies: 2
Views: 852

Re: sort arrays but keeping track of the location

hi,

Is there someone who can help me?
by turbofib
19 Apr 2020
Forum: MultiCharts
Topic: sort arrays but keeping track of the location
Replies: 2
Views: 852

sort arrays but keeping track of the location

hi,
an example to clarify it:

a=[5 1 8 2 5 2]

solved:

b=[1 2 2 5 5 8] ==> array sort

c=[2 4 6 1 5 3] ===> position element

how can I get the array position's as fast as possible? (i avoid to use loop)

i can use array_sort but it not keep track of position
by turbofib
12 Apr 2020
Forum: MultiCharts
Topic: problem with lowestFC
Replies: 1
Views: 712

problem with lowestFC

hi,
what is difference between Lowest and LowesFC ? if i use LowestFc i get this error:

https://gyazo.com/133a882dd3af19ac26691d0bb9311a12

If i use Lowest is all ok
by turbofib
21 Mar 2020
Forum: MultiCharts
Topic: how planned flag and pennant
Replies: 2
Views: 951

how planned flag and pennant

hi ,
someone have planned the flags and pennant with powerlanguage?

i see a version of this but for TS (but the code is not open, is not free :(
by turbofib
20 Feb 2020
Forum: MultiCharts
Topic: last bar day
Replies: 6
Views: 1615

Re: last bar day

if i code this with instrument "Es futures"

if time=SessionEndTime(1,1) then print(date,time," End Day");


i get this output :

1191210.00 1600.00 End Day

but time 16.00 is end session and not end day
by turbofib
19 Feb 2020
Forum: MultiCharts
Topic: last bar day
Replies: 6
Views: 1615

Re: last bar day

thank TJ...but i want to calculare in automatic...
regardless of what instrument I use
by turbofib
19 Feb 2020
Forum: MultiCharts
Topic: last bar day
Replies: 6
Views: 1615

last bar day

hi, i need to find last bar in the trading day : if i use date<>date[1] is not correct because i receive information after 1 bar...i want to know it the last day bar Example: i setting dax futures open 8.00 close 22.00 all days last bar day is 2200! I need to know the information at the 2200 clock
by turbofib
18 Feb 2020
Forum: MultiCharts
Topic: exit function with error
Replies: 2
Views: 946

exit function with error

hi,
see this code:

function :

input:num(numericSeries);

if num=4 then begin
print("input not correct");
break;

.......
.......
end;


it's not possibile to use break to exit function, it give me error

what can i use to exit function?
by turbofib
13 Jan 2020
Forum: MultiCharts
Topic: problem suspension window10 with multuchart
Replies: 2
Views: 1135

Re: problem suspension window10 with multuchart

can someone help me? if I keep multichart open when I go into window10 suspension it interrupts
The problem is due to multichart which always tries to connect and therefore makes me wake up windows from hibernation
by turbofib
09 Jan 2020
Forum: MultiCharts
Topic: problem suspension window10 with multuchart
Replies: 2
Views: 1135

problem suspension window10 with multuchart

hi,
if i open multichart and i after i do a suspension window10 , i can't do it
The window10 can't sleep
Anyone else have this problem?
by turbofib
27 Apr 2019
Forum: MultiCharts
Topic: save dataRange..problem
Replies: 1
Views: 748

save dataRange..problem

hi,
i've save workspace with chart data range that finish to 31/12/2017....
I've close workspace....
After i Open workspace saved and i see data range that finish 27/04/2019


it's possible to save also data range? thank
by turbofib
26 Apr 2019
Forum: MultiCharts
Topic: export code in octave
Replies: 4
Views: 1549

Re: export code in octave

do you read this post?
viewtopic.php?t=11228
by turbofib
24 Apr 2019
Forum: MultiCharts
Topic: Text_SetBGColor: how to set to transparent? [SOLVED]
Replies: 4
Views: 2649

Re: Text_SetBGColor: how to set to transparent? [SOLVED]

hi,
can the plot be colored transparently?
( plot1(c, "Bar High", paint.color);
by turbofib
20 Apr 2019
Forum: MultiCharts
Topic: Time Zone Color
Replies: 1
Views: 1154

Time Zone Color

hi, it's possible to get similar it ? (see pics)..
How can i get it with powerlanguage?
zoneColor.png
(65.25 KiB) Downloaded 287 times
by turbofib
17 Apr 2019
Forum: MultiCharts
Topic: export code in octave
Replies: 4
Views: 1549

Re: export code in octave

hi, i see this post :

viewtopic.php?t=11228
by turbofib
15 Apr 2019
Forum: MultiCharts
Topic: export code in octave
Replies: 4
Views: 1549

export code in octave

hi, it's possible export code to use in octave? (similar matlab)
by turbofib
05 Feb 2019
Forum: MultiCharts
Topic: Backup multichart and missing folder in powerlanguage
Replies: 7
Views: 2178

Re: Backup multichart and missing folder in powerlanguage

Hi...it's develop on multichart12? now can i save folder and restore it? give me news thanks you
by turbofib
18 Nov 2018
Forum: MultiCharts
Topic: get symbol name from indicator
Replies: 2
Views: 1235

get symbol name from indicator

hi
i 've a chart with signal and indicator

i want to know signal's name from the indicator

i try to use GetStrategyName but i get indicator's name and not signal's name
by turbofib
02 Aug 2018
Forum: MultiCharts
Topic: problem draw trendline [SOLVED]
Replies: 1
Views: 977

problem draw trendline [SOLVED]

hi,
i want to draw line but I can not to get a free line in the chart
It is always constrained by the min and max bars

TrendLine is set to Freestyle properties
by turbofib
11 Jun 2018
Forum: MultiCharts
Topic: multichart invented orders
Replies: 1
Views: 822

multichart invented orders

hi,
i see the multichart have create order not covered in the code (and i don't see it in the chart)

See that pic:

it's possibile that?...
by turbofib
07 Jun 2018
Forum: MultiCharts
Topic: If not(X) then return;
Replies: 6
Views: 2191

Re: If not(X) then return;

Example :
In MultiChart :

if Date>1081101 then begin

all code....

end;

i would this:

if Date<=1081101 then exit

(it does not go on ... you stop there)
by turbofib
07 Jun 2018
Forum: MultiCharts
Topic: If not(X) then return;
Replies: 6
Views: 2191

If not(X) then return;

hi

Is it possible to use an output condition without using if then?

(in c# it's : If not(X) then return )
by turbofib
01 Jun 2018
Forum: MultiCharts
Topic: Trades Summary of Order and Position Tracker is not correct
Replies: 3
Views: 1251

Re: Trades Summary of Order and Position Tracker is not correct

how i get the list of trade in the trades summary?
by turbofib
30 May 2018
Forum: MultiCharts
Topic: Portfolio trader with Exchange time
Replies: 2
Views: 1228

Portfolio trader with Exchange time

hi,

now the portfolio trader we can use with some instrument in local time

is possible to set it in Exchange time in new release multichart 12?
by turbofib
29 May 2018
Forum: MultiCharts
Topic: I do not take orders sent with the multichart
Replies: 1
Views: 744

I do not take orders sent with the multichart

hi,
yesrterday (28/05/2018) it missing an order with multichart on interactive broker....

it give me error : interactive broker Order rejected reason: it does not comply with our order handling rules fot deratives the result in physical delivery

see pics
by turbofib
29 May 2018
Forum: MultiCharts
Topic: convert number bar in data [SOLVED]
Replies: 8
Views: 1891

Re: convert number bar in data [SOLVED]

Oh now i'm understand...excuse me but the difficult is write english correctly

It' ok....i'm understand the solution
by turbofib
29 May 2018
Forum: MultiCharts
Topic: convert number bar in data [SOLVED]
Replies: 8
Views: 1891

Re: convert number bar in data [SOLVED]

ok
now it's 1190529 date ..ok

i want to know the date of 1200 bar ago


How i code it? thank
by turbofib
29 May 2018
Forum: MultiCharts
Topic: convert number bar in data [SOLVED]
Replies: 8
Views: 1891

Re: convert number bar in data [SOLVED]

what is the number 123400?

i don't understand it :(

I should know how many bars there are in a day ... but if in a day there is no trading?
by turbofib
29 May 2018
Forum: MultiCharts
Topic: convert number bar in data [SOLVED]
Replies: 8
Views: 1891

Re: convert number bar in data [SOLVED]

Date of day..

Example: 40 bar ago is 1180528
by turbofib
29 May 2018
Forum: MultiCharts
Topic: convert number bar in data [SOLVED]
Replies: 8
Views: 1891

convert number bar in data [SOLVED]

hi,
i would like di convert number bar in data

example:

BarNumber= 123400

what data does it match?
by turbofib
25 May 2018
Forum: MultiCharts
Topic: change position plot in Data Window [SOLVED]
Replies: 2
Views: 1215

change position plot in Data Window [SOLVED]

Hi, look pics


i want to change order in Data Window
by turbofib
22 May 2018
Forum: MultiCharts
Topic: Restrict the scale price in only screen
Replies: 1
Views: 754

Restrict the scale price in only screen

hi,
is possible to restrict the scale price to display the entire graph in a window ?

i can do it narrowing the date scale but it would take a long time if there were many bars ..
My question is: is there a way to do it instantly?
by turbofib
07 May 2018
Forum: MultiCharts
Topic: problem price in order limit [SOLVED]
Replies: 6
Views: 1861

Re: problem price in order limit [SOLVED]

Sorry but i dont find about order limit
by turbofib
07 May 2018
Forum: MultiCharts
Topic: problem price in order limit [SOLVED]
Replies: 6
Views: 1861

Re: problem price in order limit [SOLVED]

It should be egual to open


It's a bug code ?
by turbofib
07 May 2018
Forum: MultiCharts
Topic: problem price in order limit [SOLVED]
Replies: 6
Views: 1861

Re: problem price in order limit [SOLVED]

It's backtest
by turbofib
07 May 2018
Forum: MultiCharts
Topic: problem price in order limit [SOLVED]
Replies: 6
Views: 1861

problem price in order limit [SOLVED]

hi,
.....

If Luca_Pattern_Daily(MyPtnLN, ohlcValues)=False then
buy next bar at entrylong limit;

...
this is a piece of code ...
the system entry position with limit orders


how is it possible to execute order buy at 917.25 but the maximum is 891.25?
Immagine.png
(12.33 KiB) Downloaded 721 times
by turbofib
01 May 2018
Forum: MultiCharts
Topic: Missing indicator in insert study [SOLVED]
Replies: 4
Views: 1955

Re: Missing indicator in insert study [SOLVED]

Is this the only indicator that is not showing? yes Have you tried to create another indicator in another name? No..i don't try it Does it show? Do you have more than one version of MC on your computer? Version 11.0 Release Build 15647 Do you have the new beta? No Maybe your MC is pointing to a dir...
by turbofib
29 Apr 2018
Forum: MultiCharts
Topic: Missing indicator in insert study [SOLVED]
Replies: 4
Views: 1955

Missing indicator in insert study [SOLVED]

hi, look pic
Immagine.png
(157.09 KiB) Downloaded 642 times
https://gyazo.com/50297f5e869a35a6769a3fd4b9f9ffcc

i create indicator (it call a function) , i compile it and it'is ok
but i don't find it in insert study
I try to change name it (and i compile it) but the problem is the same :(
by turbofib
24 Apr 2018
Forum: MultiCharts
Topic: code property indicator [SOLVED]
Replies: 1
Views: 874

code property indicator [SOLVED]

hi

it's possible to code it in powerlanguage?

(User specified =50)
by turbofib
16 Apr 2018
Forum: MultiCharts
Topic: Backtesting assumptions problem
Replies: 5
Views: 2191

Backtesting assumptions problem

hi, look this pic

i set in backtesting assumption Fill Limit order 1 point

But in the chart buy order is entry at high candle (2716.25 )

Why? it must only entry at 2716,25 if high candle was 2716,25+1 point
by turbofib
13 Apr 2018
Forum: MultiCharts
Topic: Send Array Bi-Dimensional in function as parameter
Replies: 4
Views: 1386

Re: Send Array Bi-Dimensional in function as parameter

It do a loop in array to print value
by turbofib
13 Apr 2018
Forum: MultiCharts
Topic: Send Array Bi-Dimensional in function as parameter
Replies: 4
Views: 1386

Send Array Bi-Dimensional in function as parameter

hi,

i try to do it:
Array:Signal[7,2](0);

EntryPosition_NetProfitIntraBar_Function(SIgnal);
EntryPosition_NetProfitIntraBar_Function

input:Signal[X][Y](NumericArrayRef);

but i get this error :

------ Compiled with error(s): ------
'(' Expected
line 1, column 300
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: New Live Cattle problem chart [SOLVED]
Replies: 12
Views: 2755

Re: New Live Cattle problem chart [SOLVED]

Are you sure close and ReOpen Mc? if i have some strategy in live i must to close all ?
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: New Live Cattle problem chart [SOLVED]
Replies: 12
Views: 2755

Re: New Live Cattle problem chart [SOLVED]

Close and ReOpen Multichart :(
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: New Live Cattle problem chart [SOLVED]
Replies: 12
Views: 2755

Re: New Live Cattle problem chart [SOLVED]

i solve my problem with live chat..thank
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: Order of signals within the backtesting
Replies: 8
Views: 2410

Re: Order of signals within the backtesting

Because ASSUMPTION n.3...read my link
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: New Live Cattle problem chart [SOLVED]
Replies: 12
Views: 2755

Re: New Live Cattle problem chart [SOLVED]

i reload data, i delete cache but the problem is the same
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: Order of signals within the backtesting
Replies: 8
Views: 2410

Re: Order of signals within the backtesting

The system that is applied to the chart is a trendfollowing type that breaks the previous bar (stop 1 tick .... profit 2 tick) Referring to the link https://www.multicharts.com/trading-software/index.php/Intra-bar_Price_Movement_Assumptions the candle in question has: Open: 2723.5 High: 2726.5 Low:...
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: New Live Cattle problem chart [SOLVED]
Replies: 12
Views: 2755

Re: New Live Cattle problem chart [SOLVED]

the symbol is @le#c

why i must to use Custom futures? my friends use this symbol on mc and it's OK

the problem is in my multichart
by turbofib
12 Apr 2018
Forum: MultiCharts
Topic: New Live Cattle problem chart [SOLVED]
Replies: 12
Views: 2755

New Live Cattle problem chart [SOLVED]

hi,
i use iqfeed...
This morning a see that chart

My friend plot this instrument correctly ..iqfeed is Ok

i think the problem is Multichart
by turbofib
11 Apr 2018
Forum: MultiCharts
Topic: Order of signals within the backtesting
Replies: 8
Views: 2410

Re: Order of signals within the backtesting

hi, i read your link but i want simulate backtesting not live trading i think that THE SIGNAL IN GRAPHIC IS OBTAINED FROM NORMAL BACKTESTING WITHOUT USING THE BAR MAGNIFICER ... WHAT I ASK IS : HOW THE BACKTESTING ALGORITHM ORDER THE LOGIC SEQUENCE ? I see https://www.multicharts.com/trading-softwar...
by turbofib
11 Apr 2018
Forum: MultiCharts
Topic: Order of signals within the backtesting
Replies: 8
Views: 2410

Order of signals within the backtesting

The system that is applied to the chart is a trendfollowing type that breaks the previous bar (stop 1 tick .... profit 2 tick) Referring to the link https://www.multicharts.com/trading-software/index.php/Intra-bar_Price_Movement_Assumptions the candle in question has: Open: 2723.5 High: 2726.5 Low: ...
by turbofib
10 Apr 2018
Forum: MultiCharts
Topic: Round near tickSize [SOLVED]
Replies: 2
Views: 1413

Round near tickSize [SOLVED]

hi,
i want to round up near tickSize

Example:

tick size = 0.25

value = 100,7...

i want to find 100.75
by turbofib
07 Apr 2018
Forum: MultiCharts
Topic: Problem currentBar is not correct [SOLVED]
Replies: 5
Views: 2059

Re: Problem currentBar is not correct [SOLVED]

Okok..now i understand..thank
by turbofib
07 Apr 2018
Forum: MultiCharts
Topic: Problem currentBar is not correct [SOLVED]
Replies: 5
Views: 2059

Re: Problem currentBar is not correct [SOLVED]

yes..i read it

I try to set MAx number of study will reference to 0
but it start to calcularte him from 8 currentBar....


i think the problem is that i must to start to 1 (not to 0)
by turbofib
07 Apr 2018
Forum: MultiCharts
Topic: Problem currentBar is not correct [SOLVED]
Replies: 5
Views: 2059

Problem currentBar is not correct [SOLVED]

Hi, look this pics
I print CurrentBar in all bar chart but the BarNumber( is egual to currentBar) =1 does not correspond to the first bar of the day
by turbofib
05 Apr 2018
Forum: MultiCharts
Topic: Interactive broker feed....No data [SOLVED]
Replies: 6
Views: 2210

Re: Interactive broker feed....No data [SOLVED]

now i solve it...thanks...

The problem was missing subscription data feed
by turbofib
05 Apr 2018
Forum: MultiCharts
Topic: Interactive broker feed....No data [SOLVED]
Replies: 6
Views: 2210

Re: Interactive broker feed....No data [SOLVED]

Yes of course....i add it in quotemanager..

I see i've problem to subscribe real time data with interactive broker
by turbofib
04 Apr 2018
Forum: MultiCharts
Topic: Interactive broker feed....No data [SOLVED]
Replies: 6
Views: 2210

Re: Interactive broker feed....No data [SOLVED]

But how i solve my problem?
by turbofib
04 Apr 2018
Forum: MultiCharts
Topic: Interactive broker feed....No data [SOLVED]
Replies: 6
Views: 2210

Interactive broker feed....No data [SOLVED]

Immagine3.png
(5.69 KiB) Downloaded 645 times
Immagine2.png
(185.17 KiB) Downloaded 645 times
Immagine1.png
(16.9 KiB) Downloaded 645 times


hi, look my setting



I can't load chart with IB feed..
by turbofib
01 Apr 2018
Forum: MultiCharts
Topic: Enter signal cross equity
Replies: 12
Views: 5417

Re: Enter signal cross equity

Thank you for suggestion
Do you have link for last global variable? I've the link but it's very old
by turbofib
31 Mar 2018
Forum: MultiCharts
Topic: Enter signal cross equity
Replies: 12
Views: 5417

Re: Enter signal cross equity

Mazinguer thank but the problem is another :(.. The problem is sending the realtime signals to the connected broker (Example Interactive Broker) The chart generates signals that create the equity... But these signals contain "buy (Condition), Or sell (Condition) and in this signal the trade is execu...
by turbofib
30 Mar 2018
Forum: MultiCharts
Topic: Enter signal cross equity
Replies: 12
Views: 5417

Re: Enter signal cross equity

I'm sorry but the problem is that I can not explain myself since I speak English with the translator..the problem is not to create the logic How can I tell the system not to enter when the chart signals are there but to enter only when the equity study? If equity is created through trade signals, I ...
by turbofib
30 Mar 2018
Forum: MultiCharts
Topic: Enter signal cross equity
Replies: 12
Views: 5417

Re: Enter signal cross equity

I dont understand
You say" if true the buy..."

Ok..but how i code automatic signal to code it?
( automatic in powerlanguage"
It is possible to build bridge from 2 chart signal?
by turbofib
30 Mar 2018
Forum: MultiCharts
Topic: Enter signal cross equity
Replies: 12
Views: 5417

Re: Enter signal cross equity

Immagine.png
(54.72 KiB) Downloaded 1709 times
Immagine2.png
(107.7 KiB) Downloaded 1709 times
i give you another example

this is the chart and his equity line

i want enter position (long ) when Momentum of line equity(10 period ago) is > of line equity line at this moment

how can i do it?
by turbofib
30 Mar 2018
Forum: MultiCharts
Topic: Enter signal cross equity
Replies: 12
Views: 5417

Enter signal cross equity

hi, it's possible to study equity and entry in the market when equity cross over Sma (it's an example)

How can i do it?
by turbofib
29 Mar 2018
Forum: MultiCharts
Topic: max value in array [SOLVED]
Replies: 5
Views: 2319

Re: max value in array [SOLVED]

yes..
by turbofib
29 Mar 2018
Forum: MultiCharts
Topic: max value in array [SOLVED]
Replies: 5
Views: 2319

max value in array [SOLVED]

hi,
i've this array :

Array:Val[30]

i want to know the max value in this array

I would like to avoid lopping it with a for

(for counter=0 to 29......)..

How i find max value in array? thank
by turbofib
29 Mar 2018
Forum: MultiCharts
Topic: Backup multichart and missing folder in powerlanguage
Replies: 7
Views: 2178

Re: Backup multichart and missing folder in powerlanguage

I want to duplicate multichart completely on another pc by backing up but I have seen that powerlanguage folders do not make them.
Do I have to recreate them by hand on the second pc?
by turbofib
27 Mar 2018
Forum: MultiCharts
Topic: Backup multichart and missing folder in powerlanguage
Replies: 7
Views: 2178

Backup multichart and missing folder in powerlanguage

hi,
i do the multichart's backup and i see it missing folder in powerlanguage

(i created folder in powerlanguage editor)

here attached the pic
by turbofib
22 Mar 2018
Forum: MultiCharts
Topic: Data Feed Ts in multichart is not egual to TS Feed
Replies: 8
Views: 2068

Re: Data Feed Ts in multichart is not egual to TS Feed

i reload it but it don't change
by turbofib
21 Mar 2018
Forum: MultiCharts
Topic: Data Feed Ts in multichart is not egual to TS Feed
Replies: 8
Views: 2068

Re: Data Feed Ts in multichart is not egual to TS Feed

ok...but i don't understand how i solve my problem

you write : "Otherwise you might not see the back adjustment in the continuous contracts"


but how can solve my problem (data multichart is different of feed ts)?
by turbofib
21 Mar 2018
Forum: MultiCharts
Topic: Data Feed Ts in multichart is not egual to TS Feed
Replies: 8
Views: 2068

Re: Data Feed Ts in multichart is not egual to TS Feed

i think i don't see back adjustnebt in the continuous contracts
i see it in ts feed but don't in MC

How can i do it?
by turbofib
21 Mar 2018
Forum: MultiCharts
Topic: Data Feed Ts in multichart is not egual to TS Feed
Replies: 8
Views: 2068

Re: Data Feed Ts in multichart is not egual to TS Feed

i try it.....
I close multichart and reopen chart....

But it don't change :(
by turbofib
21 Mar 2018
Forum: MultiCharts
Topic: Data Feed Ts in multichart is not egual to TS Feed
Replies: 8
Views: 2068

Data Feed Ts in multichart is not egual to TS Feed

hi,
i've download feed by TS......
I see two problem ..

After i checked the data on MultiChart with the original(TS)

i see different quote

look pics:

Also in the chart MultiChart there is a totally wrong bar
by turbofib
18 Mar 2018
Forum: MultiCharts
Topic: TS feed on multichart is running?
Replies: 1
Views: 758

TS feed on multichart is running?

hi,
How do I know if the TS feed is working real time?
What should I look in multichart to know?
by turbofib
16 Mar 2018
Forum: MultiCharts
Topic: fixed text in a chart [SOLVED]
Replies: 3
Views: 1342

Re: fixed text in a chart [SOLVED]

thank you..,.

But it is possibile to draw it by hand (not using code script) ? (fixed in the chart)
by turbofib
16 Mar 2018
Forum: MultiCharts
Topic: How to count trade long e short in a day
Replies: 3
Views: 1177

Re: How to count trade long e short in a day

if i code it :
for Loop = 0 to 10 begin
if (EntryDate(Loop) = Date0)
then Cnt = Cnt + 1 ;
end ;
it give me total trade in this Date...
But if i want to distinguish between long trade and short trade which reserved word should I use?
by turbofib
16 Mar 2018
Forum: MultiCharts
Topic: fixed text in a chart [SOLVED]
Replies: 3
Views: 1342

fixed text in a chart [SOLVED]

hi, i want to fixed text in chart...

I want to always see it

look at example

[img]
Immagine.png
(130.35 KiB) Downloaded 483 times
[/img]


Is it possible to do it without programming? (write it by hand with draw text)
by turbofib
09 Mar 2018
Forum: MultiCharts
Topic: How to count trade long e short in a day
Replies: 3
Views: 1177

How to count trade long e short in a day

Hi,

i want to count trade long and short executed in a day

Can you help me?
by turbofib
22 Feb 2018
Forum: MultiCharts
Topic: Missing navigation bar powerlanguage
Replies: 1
Views: 639

Missing navigation bar powerlanguage

hi, i don't find navigatio bar
by turbofib
08 Oct 2017
Forum: MultiCharts
Topic: plot equity line in chart
Replies: 1
Views: 799

plot equity line in chart

hi, i see

viewtopic.php?f=1&hilit=plot%20equity%2 ... 524#p28209

there are new implementations of this?
by turbofib
08 Oct 2017
Forum: MultiCharts
Topic: call indicator in strategy [SOLVED]
Replies: 2
Views: 1260

call indicator in strategy [SOLVED]

hi, i have a indicator and i want to call and use it in a strategy

I can do it?
by turbofib
30 Sep 2017
Forum: MultiCharts
Topic: Begin session and EndSession
Replies: 3
Views: 1466

Re: Begin session and EndSession

Mmm ok
If there is a boolean sessionlastbar why there isn't a boolean with sessionFirstBar??
I dont understand:((
Thank you
by turbofib
30 Sep 2017
Forum: MultiCharts
Topic: Begin session and EndSession
Replies: 3
Views: 1466

Begin session and EndSession

I would like to know when the session begins and ends if session end i use sessionlastbar.. But if session begin what i code it? I see documentation and i see sessionStartTime Should i use SessionStartTime? if yes, i dont understand what is the parameter i use in What is : SessionNum - a numerical e...
by turbofib
29 Sep 2017
Forum: MultiCharts
Topic: convert DateTIme in Really date and time of bar chart [SOLVED]
Replies: 1
Views: 846

convert DateTIme in Really date and time of bar chart [SOLVED]

hi,i want plot to begin session this code : Print(datetime[0]); but it give me a result which i don't understand.... I want to convert in really Date and Time of bar i see in keyword reference that DateTime will return 41422.74 for 5/28/2013 08:41:11.813 but i can't to convert 41422.74 in 5/28/2013 ...
by turbofib
29 Sep 2017
Forum: MultiCharts
Topic: historical data in quotemanager that disappear
Replies: 9
Views: 3164

historical data in quotemanager that disappear

hi, i've import file *.qmd with some symbol and data
After import i try it and it was all okey...
The day after i reload chart but all data had disappeared

i see it in quotemanager==> Symbol and edit data.....is all empty :((
by turbofib
27 Sep 2017
Forum: MultiCharts
Topic: Code read only...problem
Replies: 1
Views: 839

Code read only...problem

hi, i've export my code easylanguage but i 've use Read Only when i export it...(:((((( )

After i've format pc and reinstall all..

Now i've import this code but i can't read code..


How can i do to read code ? thanks
by turbofib
22 Sep 2017
Forum: MultiCharts
Topic: problem with import ascii
Replies: 1
Views: 729

problem with import ascii

hi,
i try to import ascii data but i can't

https://gyazo.com/06064e61cb63de49f5409a04739970bd
by turbofib
14 Sep 2017
Forum: MultiCharts
Topic: What is difference between HighS and HighD? [SOLVED]
Replies: 1
Views: 2201

What is difference between HighS and HighD? [SOLVED]

hi,

HighD = Value1 = OHLCPeriodsAgo( 1, PeriodsAgo, var0, var1, var2, var3 ) ;

HighS=Value1 = OHLCPeriodsAgo( 0, PeriodsAgo, var0, var1, var2, var3 ) ;

The Plot is the same...but HighD would plot High Daily and HighS would plot High Intraday--

But i don't see any difference
by turbofib
29 Oct 2014
Forum: MultiCharts
Topic: MIn movement quotemanager
Replies: 4
Views: 1669

Re: MIn movement quotemanager

1,2700 - 1,2701 ====> 0.0001
by turbofib
29 Oct 2014
Forum: MultiCharts
Topic: MIn movement quotemanager
Replies: 4
Views: 1669

MIn movement quotemanager

hi, I can not set the decimal point...

ex: euro fx i must set to decimal point 0.1
but when i press "," do not write it
by turbofib
29 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

turbofib, please validate your order generation conditions and follow these instructions to make indicator and signal calculation results the same. You can also use i_setplotvalue and i_getplotvalue (introduced in MultiCharts 9.0 Beta 1). It allows sending info from signal to indicator in order to ...
by turbofib
29 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

you write :

Code: Select all

if open tomorrow>high and marketposition=0 then buy next bar at 1 Stop;


the trading system is not daily but intraday...
by turbofib
28 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

i write this code : Inputs: Strength(2); value1=swinghigh(1,h,Strength,80); value2=swinglow(1,l,Strength,80); if currentbar>200 then begin [IntrabarOrderGeneration = true]; if (BarStatus(1) = 2) then begin if high>value1 then buy("buy") next bar at value2 stop; end; end; But i see it don't entry to ...
by turbofib
28 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

Thanks you....i try it..
by turbofib
27 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

i see you link ..but i not found it


i want to enter long next candle if price >high

Code: Select all

if open next bar>high(of this candle) and marketposition=0 then Buy ("buy") next bar at x stop;
is not corret..it give me an error..

Can you help me to code this instruction? thanks
by turbofib
27 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

if i have signal multiframe is possibile use IOG ?

Which instruction I have to write to go long on the break of the current candle?
(with IOG)
thanks
by turbofib
26 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

Re: problem order next bar

I can do it..if i set order intrabar=true?
by turbofib
26 Oct 2014
Forum: MultiCharts
Topic: problem order next bar
Replies: 15
Views: 3418

problem order next bar

hi,
i've signal in multiframe

i want to enter long next candle if price >high

i write this instruction:

Code: Select all

if open next bar>high(of this candle) and marketposition=0 then Buy ("buy") next bar at x stop;
I See the following error (see pics )
by turbofib
09 Oct 2014
Forum: MultiCharts
Topic: Description Inputs
Replies: 3
Views: 1058

Description Inputs

Hi, how can i do to write description near Inputs?

ex:
by turbofib
04 Oct 2014
Forum: MultiCharts
Topic: Slope curve
Replies: 14
Views: 5297

Re: Slope curve

Use my code.. It's a simple way of approaching this, but it does exactly what you want.
MA1 = MA[1]

Why do you need to recalculate?
in your function you fixed the value of the volatility at 20..

if it changes the volatility must change the value
by turbofib
03 Oct 2014
Forum: MultiCharts
Topic: Slope curve
Replies: 14
Views: 5297

Re: Slope curve

is no good method....because you give use 2 point for slope function(linear regression)
by turbofib
02 Oct 2014
Forum: MultiCharts
Topic: Slope curve
Replies: 14
Views: 5297

Re: Slope curve

See pics below..

i try to use linearregslope but i don't know if is correct....

the lines should be narrow and flat

Do you have any idea?

Thanks
by turbofib
01 Oct 2014
Forum: MultiCharts
Topic: Slope curve
Replies: 14
Views: 5297

Re: Slope curve

The slope expressed in Degrees

Ex:

value1=3;
Plot1(3);

degree is 0(zero);

value1=close;
Plot1(close);

degrees vary depending on the slope of the curve

When the curve is flat ... i will be near zero degrees


I need to know when the curve is flat

see pics below..
by turbofib
01 Oct 2014
Forum: MultiCharts
Topic: Slope curve
Replies: 14
Views: 5297

Slope curve

Hi, i ask a question...
how can i calculate the slope of a curve with powerlanguage?

Code: Select all

value1=average(close,10);
i must calculate slope in value1 and plot it...

Thanks yoy
by turbofib
30 Sep 2014
Forum: MultiCharts
Topic: MAX value in array
Replies: 3
Views: 1413

Re: MAX value in array

ok thanks....but to order it:

arr[1] = 2;
arr[2] = 5;
arr[3] = 9;
arr[4] = 3;
arr[5] = 1;

New order :

arr[1] = 9;
arr[2] = 5;
arr[3] = 3;
arr[4] = 2;
arr[3] = 1;

i can to create a secondary array and move it step by step?
by turbofib
30 Sep 2014
Forum: MultiCharts
Topic: MAX value in array
Replies: 3
Views: 1413

MAX value in array

hi, i've array of integer:

Code: Select all

Array:arrayMassimi[5](0);
arraymassimi[1]=12;
arraymassimi[2]=20;
arraymassimi[3]=15;
arraymassimi[4]=60;
arraymassimi[5]=2;
i want to ordinate max value in series array.....(ex: 60 , 20 , 15,12,2)

Exist a instruction to do this?
by turbofib
22 Sep 2014
Forum: MultiCharts
Topic: Problem Multiframe
Replies: 8
Views: 2020

Re: Problem Multiframe

I still have not figured out what's wrong in my indicator...
With your last post I don't understand what I needed to see
Have you compared it to your "correct" lines?
yes....the lines is correct....
The problem is the print..(if i don't apply "base study on chart 3")

thanks
by turbofib
22 Sep 2014
Forum: MultiCharts
Topic: Problem Multiframe
Replies: 8
Views: 2020

Re: Problem Multiframe

I still have not figured out what's wrong in my indicator...
With your last post I don't understand what I needed to see
by turbofib
22 Sep 2014
Forum: MultiCharts
Topic: Problem Multiframe
Replies: 8
Views: 2020

Re: Problem Multiframe

ok.....see pics.....
by turbofib
21 Sep 2014
Forum: MultiCharts
Topic: Problem Multiframe
Replies: 8
Views: 2020

Re: Problem Multiframe

var:gg(0,data3); gg=(low of data3 + high of data3)/2; value9=Average(gg ,13)[8] of data3; value10=Average(gg ,8)[5] of data3; value11=Average(gg,5)[3] of data3; value20=Average((low of data3 + high of data3)/2,13)[8] of data3; value21=Average((low of data3 + high of data3)/2,8)[5] of data3; value22...
by turbofib
21 Sep 2014
Forum: MultiCharts
Topic: Problem Multiframe
Replies: 8
Views: 2020

Problem Multiframe

hi, in this 2 code below...it give me result different..i don't understand //CODE 1 var:gg(0,data3); gg=(low of data3 + high of data3)/2; value9=Average(gg ,13)[8] of data3; value10=Average(gg ,8)[5] of data3; value11=Average(gg,5)[3] of data3; Print(date ,time ," 60 MIN UP , DOWN ", " MEDIANA " , v...
by turbofib
08 Sep 2014
Forum: MultiCharts
Topic: drop-down menu
Replies: 1
Views: 666

drop-down menu

hi, is possibile to create a drop-down menu in powerlanguage?
it is possibile in mc.net using "enum"..but i don't know in powerlanguage
(ex...when i choise a chart type .....i see a drop-down menu)

Thanks
by turbofib
06 Sep 2014
Forum: MultiCharts
Topic: condition occurred in the last n bars [SOLVED]
Replies: 3
Views: 1089

Re: condition occurred in the last n bars [SOLVED]

Yes is correct, but I thought there was a native instruction to do this
by turbofib
06 Sep 2014
Forum: MultiCharts
Topic: condition occurred in the last n bars [SOLVED]
Replies: 3
Views: 1089

condition occurred in the last n bars [SOLVED]

hi,

i want to code an expression so that if it occurs in the last n bars do something

exampe:

Code: Select all



condition1=Momentum( Close, 34 )>30;

if condition1 or condition1[1] or condition1[2] or condition1[3] then do something;
how i can code it?
by turbofib
25 Aug 2014
Forum: MultiCharts
Topic: Volume Weighted Average Price
Replies: 3
Views: 2418

Re: Volume Weighted Average Price

i see "VWAP reset ".......do you mean this?
and reset what what does it mean?
thanks
by turbofib
25 Aug 2014
Forum: MultiCharts
Topic: Volume Weighted Average Price
Replies: 3
Views: 2418

Volume Weighted Average Price

hi, i read here

https://www.multicharts.com/volume/

I see indicators Volume Weighted Average Price

But i don't see it in indicators multichart....Where i download it? There also mc.net?

Thanks
by turbofib
13 Aug 2014
Forum: MultiCharts .NET
Topic: Problem with draw trendline [SOLVED]
Replies: 2
Views: 1435

Re: Problem with draw trendline [SOLVED]

turbofib, what is the particular issue you have?
I have already solved it
by turbofib
05 Aug 2014
Forum: MultiCharts .NET
Topic: Problem with draw trendline [SOLVED]
Replies: 2
Views: 1435

Problem with draw trendline [SOLVED]

hi, Here i'm draw trendline... bottom = new ChartPoint(datetimelow,mtlow); top = new ChartPoint(MT_RIAL_DATATIME_MAX,mtlow); Tl2.Value=DrwTrendLine.Create(bottom, top); But if i want to change this... is correct the following instruction : if (Tl2.Value!=null) {Tl2.Value.Begin=(new ChartPoint(dateti...
by turbofib
05 Aug 2014
Forum: MultiCharts .NET
Topic: Bars.CurrentBar...PROBLEM
Replies: 1
Views: 1169

Bars.CurrentBar...PROBLEM

using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator{ public class canc : IndicatorObject { public canc(object _ctx):base(_ctx) { Contabarre=3; } [Input] public int Contabarre { get; set; } private IPlotObject plot1; private Function...
by turbofib
30 Jul 2014
Forum: MultiCharts .NET
Topic: Problem date and time....draw trendline
Replies: 1
Views: 1064

Problem date and time....draw trendline

to bo patient with the new beginners mc.net :( i see example in forum and in the guide mc.net protected override void CalcBar() { if (Bars.CurrentBar == 1) { ChartPoint top = new ChartPoint(Bars.TimeValue, Bars.HighValue); ChartPoint bottom = new ChartPoint(Bars.TimeValue, Bars.LowValue); DrwTrendLi...
by turbofib
29 Jul 2014
Forum: MultiCharts .NET
Topic: Use methods in function
Replies: 3
Views: 1480

Re: Use methods in function

below there is the code ...
I am translating an indicator easylanguage done ... so for now, it does not give any result from mistakes ... and wonder what this error is due
by turbofib
29 Jul 2014
Forum: MultiCharts .NET
Topic: Use methods in function
Replies: 3
Views: 1480

Use methods in function

hi,....see code below : using System; using System.Drawing; using System.Linq; namespace PowerLanguage { namespace Function { public sealed class MainTrend : FunctionSeries<System.Int32> { public MainTrend(CStudyControl _master) : base(_master) { } public MainTrend(CStudyControl _master, int _ds) : ...
by turbofib
29 Jul 2014
Forum: MultiCharts .NET
Topic: Inside Bar Function
Replies: 6
Views: 2063

Re: Inside Bar Function

thanks but it 's too hard to do ... I'm at the beginning of c #

Is there someone who can give me a hand in creating it? thank you very much
by turbofib
29 Jul 2014
Forum: MultiCharts .NET
Topic: Inside Bar Function
Replies: 6
Views: 2063

Re: Inside Bar Function

i create this function : namespace PowerLanguage { namespace Function { public sealed class InsideBar : FunctionSeries<System.Boolean> { public InsideBar(CStudyControl _master) : base(_master) { } public InsideBar(CStudyControl _master, int _ds) : base(_master, _ds) { } public Int32 n { get; set; } ...
by turbofib
28 Jul 2014
Forum: MultiCharts .NET
Topic: Inside Bar Function
Replies: 6
Views: 2063

Inside Bar Function

hi, i need to use Inside Bar function ...
i see indicator Inside_Bar but not is function

i must to create this function or is already available

Thanks
by turbofib
11 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

Re: PROBLEM WITH IQFEED [SOLVED]

Thanks you andrew...problem is solve
by turbofib
10 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

Re: PROBLEM WITH IQFEED [SOLVED]

the version is last 8.8 realse(8967)
by turbofib
10 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

Re: PROBLEM WITH IQFEED [SOLVED]

no....problem is not solve....i delete cache and date...close mc e open....
but don't load chart

but problem is...with all symbols
by turbofib
10 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

Re: PROBLEM WITH IQFEED [SOLVED]

......... log
by turbofib
10 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

Re: PROBLEM WITH IQFEED [SOLVED]

this pics
by turbofib
10 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

Re: PROBLEM WITH IQFEED [SOLVED]

it load only 7 days..


WIth NT symbol xg i don't have a problem to load chart
by turbofib
10 Apr 2014
Forum: MultiCharts
Topic: PROBLEM WITH IQFEED [SOLVED]
Replies: 15
Views: 3544

PROBLEM WITH IQFEED [SOLVED]

USE IQFEED BUT IT VERY VERY slow to load chart...
i'm wait 30 minutes but i don't see chart load(30 daily ..frame daily)
by turbofib
16 Mar 2014
Forum: MultiCharts
Topic: Renko Price Bars and Cumulative Delta
Replies: 2
Views: 1643

Re: Renko Price Bars and Cumulative Delta

hallo....
I was unable to mix renko and its cumulative delta on the same chart too...(is not possible to calculate deltacumulative renko's)

In this pics there is Renko and Delta of M**D...
This the best rappresentation that i had
by turbofib
28 Sep 2013
Forum: MultiCharts
Topic: Add the volume chart [SOLVED]
Replies: 2
Views: 1467

Re: Add the volume chart [SOLVED]

thanks ... I had not realized that the n. volumes= n. contracts
by turbofib
28 Sep 2013
Forum: MultiCharts
Topic: Add the volume chart [SOLVED]
Replies: 2
Views: 1467

Add the volume chart [SOLVED]

i ask if you can implement in the next version of the volume bar on the basis of contracts traded

Example: Each candlestick forms only after 750 futures contracts have traded.

See pics below(exemple is a indicator for NT)
by turbofib
04 Sep 2013
Forum: MultiCharts
Topic: VOLUME DELTA MULTICHART
Replies: 9
Views: 3587

Re: VOLUME DELTA MULTICHART

ok .... when I have time I'll do some checking .. thanks
by turbofib
04 Sep 2013
Forum: MultiCharts
Topic: VOLUME DELTA MULTICHART
Replies: 9
Views: 3587

Re: VOLUME DELTA MULTICHART

ok, i didn't get irt was investor/rt. Can u explain why it should give the same results of mc, when it's the same program as md?

We are not talking about slight differences, but about *BIG* differences, as u can see in my pics posted earlier
by turbofib
04 Sep 2013
Forum: MultiCharts
Topic: VOLUME DELTA MULTICHART
Replies: 9
Views: 3587

Re: VOLUME DELTA MULTICHART

I bought both historical and realtime
In the pic i posted i inserted a 4 minutes bar to analyze the inside development without garbage due to some seconds of difference

What's that irt cumulative delta indicator? you mean on md or mc?
by turbofib
30 Aug 2013
Forum: MultiCharts
Topic: VOLUME DELTA MULTICHART
Replies: 9
Views: 3587

Re: VOLUME DELTA MULTICHART

dear sir, i used another program, NT, and the results are the same as MD. So, if i need to know what's the correct pressure (buy or sell) in a specific bar, which platform do i need to reference? The charts are set up in the same way in all the platforms I can't understand why i'm stil getting oppos...
by turbofib
28 Aug 2013
Forum: MultiCharts
Topic: Hotkey for HL Bars [SOLVED]
Replies: 5
Views: 5746

Re: Hotkey for HL Bars [SOLVED]

thanks you!
by turbofib
27 Aug 2013
Forum: MultiCharts
Topic: VOLUME DELTA MULTICHART
Replies: 9
Views: 3587

VOLUME DELTA MULTICHART

Andrew Multichart say me: ""In MultiCharts we don't have Delta as an indicator, we have it a s a chart type. I am not aware how it is calculated in your application, but you can find the description of our one right here." But i don't understand why the same timeframe and bar type, then 2 different ...
by turbofib
24 Aug 2013
Forum: MultiCharts
Topic: Hotkey for HL Bars [SOLVED]
Replies: 5
Views: 5746

Re: Hotkey for HL Bars [SOLVED]

I downloaded last version but can not find this hotkey....where is?
by turbofib
14 Aug 2013
Forum: MultiCharts
Topic: comparison between esignal app and multicharts about volume
Replies: 5
Views: 2421

Re: comparison between esignal app and multicharts about vol

i asked you if it's possible to build the cumulative delta as indicator and not as a way to view the chart
by turbofib
09 Aug 2013
Forum: MultiCharts
Topic: comparison between esignal app and multicharts about volume
Replies: 5
Views: 2421

Re: comparison between esignal app and multicharts about vol

it's possibile to request to the multichart project management for the above mentioned indicator? thank you mister
by turbofib
06 Aug 2013
Forum: MultiCharts
Topic: comparison between esignal app and multicharts about volume
Replies: 5
Views: 2421

comparison between esignal app and multicharts about volume

i noticed a bad discrepancy between the same data coming from esignal, but used to feed multicharts and their app. In particular the delta indicator shows different amount of delta balance for the same bar and same timeframe. Any clue?
by turbofib
30 Jul 2013
Forum: MultiCharts
Topic: ASK TRADED AND BID TRADED IN VOLUME DELTA [SOLVED]
Replies: 2
Views: 2740

ASK TRADED AND BID TRADED IN VOLUME DELTA [SOLVED]

I need to know for each bar the sum of the bid and ask negotiations (the sum of the numbers on the left and on the right of each column in the bar price)..
which command in the program do you use? (is Not uptick and downick)..
thanks you
by turbofib
08 Jul 2013
Forum: MultiCharts
Topic: ERROR RENKO IN MULTIFRAME [SOLVED]
Replies: 9
Views: 4155

Re: ERROR RENKO IN MULTIFRAME [SOLVED]

found the error .... settings study was set to the first rather than the second chart .. (I'm still not an expert on the functionality of MULTICHART) now works correctly but I ask you a question: I used to refer to these data2 in the program to chart 2 Why do I have to also point you in the properti...
by turbofib
07 Jul 2013
Forum: MultiCharts
Topic: ERROR RENKO IN MULTIFRAME [SOLVED]
Replies: 9
Views: 4155

Re: ERROR RENKO IN MULTIFRAME [SOLVED]

then probably I have some problems .. but I do not know what information to provide to find them ..... I visualize the code again and a new futur var:renko_red_green(0); if C of data2 crosses over C[1] of data2 then begin //RENKO UP renko_red_green=2; end; if C of data2 crosses under C[1] of data2 t...
by turbofib
06 Jul 2013
Forum: MultiCharts
Topic: ERROR RENKO IN MULTIFRAME [SOLVED]
Replies: 9
Views: 4155

Re: ERROR RENKO IN MULTIFRAME [SOLVED]

I did not understand if I have to report it as a bug in project management...
I have not read any response regarding my problem
by turbofib
04 Jul 2013
Forum: MultiCharts
Topic: ERROR RENKO IN MULTIFRAME [SOLVED]
Replies: 9
Views: 4155

Re: ERROR RENKO IN MULTIFRAME [SOLVED]

okk var:renko_red_green(0); if C of data2 crosses over C[1] of data2 then begin //RENKO UP renko_red_green=2; end; if C of data2 crosses under C[1] of data2 then begin //RENKO DOWN renko_red_green=1; end; plot1(renko_red_green); I APPLY a code a futures dax ( symbol ax u3-dt) intervals are written i...
by turbofib
03 Jul 2013
Forum: MultiCharts
Topic: ERROR RENKO IN MULTIFRAME [SOLVED]
Replies: 9
Views: 4155

ERROR RENKO IN MULTIFRAME [SOLVED]

MY PROGRAM : var:renko_red_green(0); if C of data2 crosses over C[1] of data2 then begin //RENKO UP renko_red_green=2; end; if C of data2 crosses under C[1] of data2 then begin //RENKO DOWN renko_red_green=1; end; plot1(renko_red_green); ******************** see the pics below in the first graph the...
by turbofib
02 Jul 2013
Forum: MultiCharts
Topic: automatic trading with interactive brokers
Replies: 9
Views: 4750

Re: automatic trading with interactive brokers

i wonder if the different symbol format could be a problem. For istance: i have esignal as datafeed, while my broker is interactivebroker. Obviously they have different symbol for the same istrument. Is this an issue? Or the API does the translation automatically? In symbol mapping i can't find the ...
by turbofib
02 Jul 2013
Forum: MultiCharts
Topic: automatic trading with interactive brokers
Replies: 9
Views: 4750

Re: automatic trading with interactive brokers

Now I read Submitted but orders are not executed .. my program: inputs: Price( Close ), FastLength( 9 ), SlowLength( 18 ) ; variables: var0( 0 ), var1( 0 ) ; var0 = AverageFC( Price, FastLength ) ; var1 = AverageFC( Price, SlowLength ) ; condition1 = CurrentBar > 1 and var0 crosses over var1 ; if co...
by turbofib
02 Jul 2013
Forum: MultiCharts
Topic: automatic trading with interactive brokers
Replies: 9
Views: 4750

Re: automatic trading with interactive brokers

also when I enable Automate Order Execution me disappears from the graph historical trading system
by turbofib
02 Jul 2013
Forum: MultiCharts
Topic: automatic trading with interactive brokers
Replies: 9
Views: 4750

Re: automatic trading with interactive brokers

I did it but does not work
by turbofib
01 Jul 2013
Forum: MultiCharts
Topic: automatic trading with interactive brokers
Replies: 9
Views: 4750

automatic trading with interactive brokers

i set up as the below pic. settings on interactive brokers are correct, but it can't connect to the automatic trading gateway, thus the trading system is not executed.
2.PNG
(56.85 KiB) Downloaded 828 times
by turbofib
20 Jun 2013
Forum: MultiCharts
Topic: RENKO BAR and CONDITION RED or green
Replies: 2
Views: 2065

RENKO BAR and CONDITION RED or green

how do I set a program line for which if the renko is green condition=1

and if renko is red condition=2
by turbofib
19 Jun 2013
Forum: MultiCharts
Topic: PROBLEM..real trading and backtest precision simulation....
Replies: 5
Views: 2686

Re: PROBLEM..real trading and backtest precision simulation.

multichart is multichart64 version 8.5 release(build 6851) some instruction of my program: [IntrabarOrderGeneration = True]; low of data1 < low[1] of data1 close of data2>close[1] of data2 i ask you if (close of data2>close[1] of data2) compares the last 2 bars at the end of the candle or in the mid...
by turbofib
18 Jun 2013
Forum: MultiCharts
Topic: PROBLEM..real trading and backtest precision simulation....
Replies: 5
Views: 2686

PROBLEM..real trading and backtest precision simulation....

I see that there are differences between the signals provided by the backtesting accurate and signal on live(in real time) .. In the program I set market orders : **** if marketposition=0 and condition6 then buy ("Buy3") next bar at market ; **** if marketposition=0 and condition5 then sellshort ("S...
by turbofib
14 May 2013
Forum: MultiCharts
Topic: problem generation order intrabar
Replies: 5
Views: 2159

Re: problem generation order intrabar

is possibile include in next version multichart the real-time calculation in backtesting?
by turbofib
14 May 2013
Forum: MultiCharts
Topic: problem generation order intrabar
Replies: 5
Views: 2159

Re: problem generation order intrabar

yes is backtesting...
but how do I know in the historic goodness of a system if he even calculates differently entry and exit trading signals?
(with then sellshort ("Sell") next bar at market is same result)
by turbofib
14 May 2013
Forum: MultiCharts
Topic: problem generation order intrabar
Replies: 5
Views: 2159

problem generation order intrabar

I can not generate orders long or short before the close of the candle .... what is wrong in [IntrabarOrderGeneration = True]; if marketposition=0 and (high>high[1]) and (close<open) then sellshort ("Sell") next bar at open ; This statement makes me start the Sell to a close of the candle . I want t...
by turbofib
13 May 2013
Forum: MultiCharts
Topic: CUMULATIVE DELTA is not real time [SOLVED]
Replies: 4
Views: 3244

Re: CUMULATIVE DELTA is not real time [SOLVED]

Now it works.....thanks
by turbofib
12 May 2013
Forum: MultiCharts
Topic: CUMULATIVE DELTA is not real time [SOLVED]
Replies: 4
Views: 3244

Re: CUMULATIVE DELTA is not real time [SOLVED]

example: if you have price bar frame 3 minutes..and you see when the price candle is formed, you notice that the candle corresponding cumulative delta (built with frame 3 minutes) is created at the end of the corresponding bar price (close bar price)... In fact ... while the candle is forming price ...
by turbofib
11 May 2013
Forum: MultiCharts
Topic: CUMULATIVE DELTA is not real time [SOLVED]
Replies: 4
Views: 3244

CUMULATIVE DELTA is not real time [SOLVED]

the cumulative delta is not refers to the candle in the course that is forming .. but the pevious candle....
How is can get the delta cumulative in real time the current candle that is forming?

thanks you

Go to advanced search