Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

nsvv

NumericSeries and Arrays in Easylanguage

Recommended Posts

I am trying to write a multitimeframe system in Easylanguage. I basically have a higher timeframe system that works but would like to add some lower time frame logic to it to make it better.

 

I have created arrays for the higher time frame o h l and c. When I try to use xaverage on those arrays, Multicharts complains of incorrect argument type. I assume this is because the Xaverage requires NumericSeries as input and not an array.

 

How do I get around this?

Edited by nsvv

Share this post


Link to post
Share on other sites

xaverage works on a "series" of data.

 

eg.

xaverage(close, 20) is the exponential average of the following data series:

 

close, close[1], close[2], close[3].... close[19]

 

 

you can replace "close" with any data series you want,

eg.

High, High[1], High[2]....,

medianprice, medianprice[1], medianprice[2]....,

pivot, pivot[1], pivot[2]... ,

etc.

 

...so long as you can wrangle a series of data into xaverage... you will be ok

Edited by Tams

Share this post


Link to post
Share on other sites

Yes, as long as the data is in DataSeries form it works of course.

 

Now, how do I convert an array to a DataSeries so that I can use xaverage?

 

Or maybe making my own version of the Xaverage function so that it accepts arrays instead of Dataseries is the only solution? This wouldnt be as good since I would probably have to rewrite other indicators to accept arrays too.

 

I tried the easier sounding solution of adding the same instrument in different higher time frame and using Data2 to access it but signals dont match at all. Does multicharts expand the higher time frame to match the lower one?

Share this post


Link to post
Share on other sites
....

Now, how do I convert an array to a DataSeries so that I can use xaverage?

...

 

you haven't described your array.

you are talking in general terms;

you will need to give specific detail to get specific answers.

Edited by Tams

Share this post


Link to post
Share on other sites

it is just a regular static array

 

I collect closing prices to it like this:

 

if hour>hour[1] then

begin

for value1=0 to 14 begin

htfClose[i+1]=htfClose;

end;

htfClose[0]=Close;

end;

Share this post


Link to post
Share on other sites

you should use code tags. That's the # key on the top of the message window.

 

Tagged code looks like this:

 

if hour>hour[1] then
begin
   for value1=0 to 14 
   begin
       htfClose[i+1]=htfClose[i];
   end;

   htfClose[0]=Close;

end;

Share this post


Link to post
Share on other sites
it is just a regular static array

...

 

average is easy...

just get the array_sum and divide it by the number of elements.

 

xaverage is a bit tricky,

you have to add the array elements one by one and then do the calculation the long way.

 

with the speed of modern computer, it is not an unsurmountable task.

Edited by Tams

Share this post


Link to post
Share on other sites

it is even easier than that, just use the built in average_a function.

 

I tried making a XAverage_a function but there is probably something wrong in it since no trades are generated. If anyone can find the fault, I would be grateful.

 

inputs: 
PriceValue[M](numericArrayRef), 
Len( numericsimple ) ;                                             

variables: 
factor( 2 / ( Len + 1 ) ) ;

XAverage_A = PriceValue[M];

      for value1 = M-1 to 0 begin
XAverage_A = XAverage_A + factor * ( PriceValue[value1] - XAverage_A ) ;
end;

Share this post


Link to post
Share on other sites

Multiple time frame system???

Why not first reading the 2 books by George Pruitt and John Hill ?

They could be very illuminating.

Moreover remember that is the shorter time frame that should lead the buy/sell signals....

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Why not to simply connect you account to myfxbook which will collect all this data automatically for you? The process you described looks tedious and a bit obsolete but may work for you though.
    • The big breakthrough with AI right now is “natural language computing.”   Meaning, you can speak in natural language to a computer and it can go through huge data sets, make sense out of them, and speak back to you in natural language.   That alone is a huge breakthrough.   The next leg? AI agents. Where they don’t just speak back to you.   They take action. Here’s the definition I like best: an AI agent is an autonomous system that uses tools, memory, and context to accomplish goals that require multiple steps.   Everything from simple tasks (analyzing web traffic) to more complex goals (building executive briefings or optimizing websites).   They can:   > Reason across multiple steps.   >Use tools like a real assistant (Excel spreadsheets, budgeting apps, search engines, etc.)   > Remember things.   And AI agents are not islands. They talk to other agents.   They can collaborate. Specialized agents that excel at narrow tasks can communicate and amplify one another’s strengths—whether it’s reasoning, data processing, or real-time monitoring.   What it Looks Like You wake up one morning, drink your coffee, and tell your AI agent, “I need to save $500 a month.”   It gets to work.   First, it finds all your recurring subscriptions. Turns out you’re paying $8.99 for a streaming service you forgot you had.   It cancels it. Then it calls your internet provider, negotiates a lower bill, and saves you another $40. Finally, it finds you car insurance that’s $200 cheaper per year.   What used to take you hours—digging through statements, talking to customer service reps on hold for an hour, comparing plans—is done while you’re scrolling Twitter.   Another example: one agent tracks your home maintenance needs and gets information from a local weather-monitoring agent. Result: "Rain forecast next week - should we schedule gutter cleaning now?"   Another: an AI agent will plan your vacations (“Book me a week in Italy for under $2,000”), find the cheapest flights, and sort out hotels with a view.   It’ll remind you to pay bills, schedule doctor’s appointments, and track expenses so you’re not wondering where your paycheck went every month.   The old world gave you tools—Excel spreadsheets, search engines, budgeting apps. The new world gives you agents who do the work for you.   Don’t Get Too Scared (or Excited) Yet William Gibson famously said: "The future is already here – it's just not evenly distributed."   AI agents will distribute it. For decades, the tools that billionaires and corporations used to get ahead—personal assistants, financial advisors, lawyers—were out of reach for regular people.   AI agents could change that.   BUT, remember…   We’re in inning one.   AI agents have a ways to go.   They’re imperfect. They mess up. They need more defenses to get ready for prime time.   To be sure, AI is powerful, but it’s not a miracle worker. It’s great at helping humans solve problems, but it’s not going to replace all jobs overnight.   Instead of fearing AI, think of it as a tool to A.] save you time on boring stuff and B.] amplify what you’re already good at. Right now is the BEST time to start experimenting. It’s also the best time to find investments that will “make AI work for you”. Author: Chris Campbell (AltucherConfidential)   Profits from free accurate cryptos signals: https://www.predictmag.com/     
    • What a wild year.   AI seems to be appearing everywhere you look, Paris hosted a weird Olympics, unrest continues in the Middle East, the US endured a crazy-heated election, and the largest rocket ever to fly successfully landed in a giant pair of robot arms.   Okay, but what about the $money stuff?   Well, this year we've seen a load of uncertainty - inflation is still biting and many businesses have gone down.   Property has been very fractured, with developments becoming prohibitively expensive, while other markets have boomed.   It hasn't been an easy ride, that's for sure.   However, the stock market has had some outstanding results, and for those who know how to trade, some have done VERY well for themselves.   Some have replaced their incomes. Some have set themselves up for the rest of their days on this planet.   How about you? How did you go? Author: Louise Bedford    Profits from free accurate cryptos signals: https://www.predictmag.com/  
    • U Unity Software stock watch, attempting to move higher off the 22.4 triple+ support area at https://stockconsultant.com/?U  
    • TSSI TSS stock, watch for an ascending triangle breakout above 11.49, target 15 area at https://stockconsultant.com/?TSSI
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.