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.

robertm

Suggestion on Platform for Coding Basic FX System (non Execution)

Recommended Posts

Hi Guys,

 

After years of working out an FX system that suits how I want to trade I'm looking for a platform that can help identify the trades and hoping for some (experienced) suggestions.

 

I am NOT looking to build a robot.

 

What I want to do is simply place an arrow on the confirmation candle and have an audible sound play to alert me to a trade opportunity, on various time frames and pairs.

 

Code wise it'll be pretty simple. X period close above MA with macro MA filter on another time frame, maybe a few indicator filters as well.

 

I had a quick look around on google but mostly found advanced EA robot builders. I use E-signal for data but haven't delved into it's other features (and it's a bit of a dog to program I heard?). I use Dealbook to execute but haven't looked at coding it directly (anybody tried?) and as I'm not planning on trading the signal generation directly I'm happy to look anywhere.

 

Suggestions? MT? NT? SR??

 

I have enough understanding to manipulate code, or my other half is a programmer and can talk geek if required :-D

 

Thanks in advance.

Edited by robertm
continuance

Share this post


Link to post
Share on other sites
Hi Guys,

 

After years of working out an FX system that suits how I want to trade I'm looking for a platform that can help identify the trades and hoping for some (experienced) suggestions.

 

I am NOT looking to build a robot.

 

What I want to do is simply place an arrow on the confirmation candle and have an audible sound play to alert me to a trade opportunity, on various time frames and pairs.

 

Code wise it'll be pretty simple. X period close above MA with macro MA filter on another time frame, maybe a few indicator filters as well.

 

I had a quick look around on google but mostly found advanced EA robot builders. I use E-signal for data but haven't delved into it's other features (and it's a bit of a dog to program I heard?). I use Dealbook to execute but haven't looked at coding it directly (anybody tried?) and as I'm not planning on trading the signal generation directly I'm happy to look anywhere.

 

Suggestions? MT? NT? SR??

 

I have enough understanding to manipulate code, or my other half is a programmer and can talk geek if required :-D

 

Thanks in advance.

 

the best would be MT4. NT and SR are mainly for futures market.

Share this post


Link to post
Share on other sites

If you want quick results with the minimum fuss you could do worse than Tradestion or Multicharts (Id go with the latter). The hurdles you will face are learning the structure, api and conventions of the platform you choose. I have programmed MT4 the obvious choice (to a lesser extent admittedly), Ninja, NeoTicker, Ensign, Metastock and probably a whole bunch more that I have forgotten. Easy Language (used by Multicharts & Tradestation) is hands down the quickest and easiest for having something running quickly. What might take hours to days in some environments can be done in minutes to hours in EL. Not only that there is a vast amount of code in the public domain to draw upon.

 

Of course if you want to develop skills you want to leverage elsewhere then that's probabbly not the best choice. If you want to do high frequency stuff or order book analysis (or other tricky stuff) again I would probably give different advice. If you just want to get the job done without much fuss (you want to concentrate on trading right?) then you could do much worse than EL.

Share this post


Link to post
Share on other sites
the best would be MT4. NT and SR are mainly for futures market.

 

FX can be traded as futures or spot. Also I know people using NT via IB and GFT offer SR solutions, so they can be used if that is what the solution calls for.

Share this post


Link to post
Share on other sites
If you want quick results with the minimum fuss you could do worse than Tradestion or Multicharts (Id go with the latter). The hurdles you will face are learning the structure, api and conventions of the platform you choose. I have programmed MT4 the obvious choice (to a lesser extent admittedly), Ninja, NeoTicker, Ensign, Metastock and probably a whole bunch more that I have forgotten. Easy Language (used by Multicharts & Tradestation) is hands down the quickest and easiest for having something running quickly. What might take hours to days in some environments can be done in minutes to hours in EL. Not only that there is a vast amount of code in the public domain to draw upon.

 

Of course if you want to develop skills you want to leverage elsewhere then that's probabbly not the best choice. If you want to do high frequency stuff or order book analysis (or other tricky stuff) again I would probably give different advice. If you just want to get the job done without much fuss (you want to concentrate on trading right?) then you could do much worse than EL.

 

Thanks BF, waited to see if any others chipped in before replying.

 

I think I'll have a look at EL via MT for starters due to the popularity & therefore ease finding info/assistance. Is there any difference if I start on MT5 given it's the newer? (ie, will all the public domain info still be applicable or were there major changes between the two code wise?). I realize it's not offered by as many brokers for the moment though, or just use MT4 then migrate later?

 

After proving it it's useful I'll consider any changes in my eSig preference for main charting package.

Share this post


Link to post
Share on other sites

 

It does, and I love it for end of day work, but I don't like it for multi chart handling. I'm still on 4.8 though so I should check out 5.5 featuring "automatic Walk-Forward Testing, Multi-monitor floating charts, symbol and interval linking", according to their pitch.

Share this post


Link to post
Share on other sites

I'll second Sierra Chart as I use it for exactly this.

 

You didn't say who your broker is? I use Interactive Brokers who've run and ECN and have got half tick spreads on EU and during peak time, some of the other majors, but do have commissions.

 

As well as visual/audio/email etc signal generation you can deal with order generation.

On chart; on dom; electronically.

 

For example, with M5 forex I always enter with a trailing stop limit so I have an autohotkey pull down menu for each of the pairs I trade on short term to buy or sell (and single buttons to cancel all orders or close and cancel if things go wrong). Then a module on SC tracks price down until the stop limit gets hit. Bracket stop and targets are handled automatically.

 

I believe you can deal with NT in a similar way but I understand its a bit buggy at times and I'm sure it's more expensive (if you're actually trading).

Share this post


Link to post
Share on other sites

I have an autohotkey pull down menu for each of the pairs I trade on short term to buy or sell (and single buttons to cancel all orders or close and cancel if things go wrong). Then a module on SC tracks price down until the stop limit gets hit.

 

Hi Kiwi - I have heard good things about SC but never really used it - is the autohotkey you show in the pictures something that comes with SC or an an additional extra program that was written?

 

I thought I might look at SC for a little project I am working on, thats related to this thread.

I plan to use an automated intraday entry method via a simple script of some sort (eg; MA cross over) , and then a discretionary method for exits - so that any stops get manually adjusted either intraday on an end of day basis. The remaining positions that are open might be held for days/weeks/months. It will be linked to IB TWS.

currently I am thinking MultiCharts might be best for this - except it does not have a DOM and manual trading off the chart - but Sierra charts could also be worth a look. Given you are a heavy user of SC do you have any thoughts on how easy this might be implemented via SC?

thanks.

Edited by SIUYA

Share this post


Link to post
Share on other sites

Autohotkey (and Autoit) are free macro scripting languages/tools widely used in the IT ops community. The thing you see in the picture is a script (below) and it writes a text file with 4 numbers. I then parse that in my order management to extract the current commands.

 

On two of the charts you can see some grey numbers. The first number is time till bar closes (which I havent bothered to make work in sim mode so the numbers are "funny" on the picture). The second shows the 4 digits in the text file. 1=do nothing, 2=buy, 3=sell, 9=flatten and cancel.

 

Autohotkey scripts are pretty simple once you've played with them for a bit. Here's the box (my stuff is never commented and it may have stuff in a script left over from an earlier one I modified to get from point A to point B :) )

 

I use autohotkey scripts to convert keys into macros (application sensitive) and also to do stuff like autoboot tws + various sierra chart instances (you can run as many scs on one pc as you want and (i think) 3 on separate pcs).

 

 


#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetBatchLines,100ms
#SingleInstance force

SetEnv, Kill, 
SetEnv, Active, 
SetEnv, Retrace, 9
OnExit, ExitSub


Gui +AlwaysOnTop 
Gui +Resize MinSize90x30 +MaxSize900x400
Gui +ToolWindow 

;Gui, Add, Checkbox, vOnOff gCBox
Gui, Add, Button, vOnOff gCBox
Gui, Add, DropDownList, vEU x+5 AltSubmit gEURUSD, EURUSD||Buy Euro|Sell Euro
Gui, Add, DropDownList, vAU x+5 AltSubmit gAUDUSD, AUDUSD||Buy Aussie|Sell Aussie
Gui, Add, DropDownList, vGU x+5 AltSubmit gGBPUSD, GBPUSD||Buy Cable|Sell Cable
Gui, Add, DropDownList, vEJ x+5 AltSubmit gEURJPY, EURJPY||Buy E J|Sell E J
Gui, Add, Button, vKill x+5 gKill
Gui, Show, X-700 Y-19, Order Management
Gui,Submit,NoHide
GoTo Text   ; 

ButtonCloseGui: 
ExitApp



Cbox:
GuiControl,Choose,EU,1
GuiControl,Choose,GU,1
GuiControl,Choose,AU,1
GuiControl,Choose,EJ,1
GuiControl,Choose,OnOff,0
GuiControl,Choose,Kill,0
GoSub Colour
GoTo Text



EURUSD:
GBPUSD:
AUDUSD:
EURJPY:
GoSub Colour
GoTo Text

Text:
; if OnOff=1 
{
FileDelete,S:\SierraChart\Commands.txt
FileAppend,%EU%%AU%%GU%%EJ%   , S:\SierraChart\Commands.txt
}
GoSub Colour
Gui,Submit,NoHide
return


Colour:
if (EU=1 and GU=1 and AU=1 and EJ=1)
{ 
 Gui, Color, C0C0C0 ; standard
} else 
if (EU=2 OR GU=2 OR AU=2 OR EJ=2)
{ 
if(EU=3 OR GU=3 OR AU=3 OR EJ=3)
{
	Gui, Color, E0E000
} else
{
	Gui, Color, D0F0FF
}
}  else 
if (EU=3 OR GU=3 OR AU=3 OR EJ=3)
{ 
if(EU=2 OR GU=2 OR AU=2 OR EJ=2)
{
	Gui, Color, E0E000
} else
{
	Gui, Color, FF8080
}
} else
{ 
 Gui, Color, E0E000
}
Gui,Submit,NoHide
Return


ExitSub:
FileDelete,S:\SierraChart\Commands.txt
FileAppend,1111   , S:\SierraChart\Commands.txt
ExitApp




Kill:
FileDelete,S:\SierraChart\Commands.txt
FileAppend,9999 , S:\SierraChart\Commands.txt
sleep,30
Gui, Color, C0C0C0 ; standard
Gui,Submit,NoHide
sleep,10000
GuiControl,Choose,EU,1
GuiControl,Choose,GU,1
GuiControl,Choose,AU,1
GuiControl,Choose,EJ,1
GuiControl,Choose,OnOff,0
GuiControl,Choose,Kill,0
GoSub Colour
GoTo Text



Gui, Add, Checkbox, vOnOff gCBox
Gui, Add, DropDownList, vEU x+5 AltSubmit Choose1 gEURUSD, EURUSD||Buy Euro|Sell Euro
Gui, Add, DropDownList, vAU x+5 AltSubmit Choose1 gAUDUSD, AUDUSD||Buy Aussie|Sell Aussie
Gui, Add, DropDownList, vGU x+5 AltSubmit Choose1 gGBPUSD, GBPUSD||Buy Cable|Sell Cable
Gui, Add, DropDownList, vEJ x+5 AltSubmit Choose1 gEURJPY, EURJPY||Buy E J|Sell E J
Gui, Show, X-640 Y-19, Order Management
Gui,Submit,NoHide

Share this post


Link to post
Share on other sites
I'll second Sierra Chart as I use it for exactly this.

 

You didn't say who your broker is? I use Interactive Brokers who've run and ECN and have got half tick spreads on EU and during peak time, some of the other majors, but do have commissions.

 

As well as visual/audio/email etc signal generation you can deal with order generation.

On chart; on dom; electronically.

 

For example, with M5 forex I always enter with a trailing stop limit so I have an autohotkey pull down menu for each of the pairs I trade on short term to buy or sell (and single buttons to cancel all orders or close and cancel if things go wrong). Then a module on SC tracks price down until the stop limit gets hit. Bracket stop and targets are handled automatically.

 

I believe you can deal with NT in a similar way but I understand its a bit buggy at times and I'm sure it's more expensive (if you're actually trading).

 

Thanks Kiwi. Yes I've heard a lot of good things about Sierra, downloaded it a few times, but never seem to get around to playing with it.

 

Broker wise I have a few, I don't tie myself to a specific broker, most of the best ones will offer the same tools to get the job done.

 

I noticed Amibroker has a feed plugin for IB data from TWS, and has a plugin for executing with IB from the platform now. Having just explored the latest version I LOVE the Interval linking feature, I've wanted this on previous charting packages like eSignal for years now. I also like Ami's ability to switch layers on/of to keep charts free of clutter. Some things are still a bit clunky like not being able to "edge out" charts by getting rid of the title bar in the chart frame (which eSig does for me).

 

Topping it all off I know several die hard Amibroker users with extensive coding/testing experience so I'm leaning that direction for my explorations at this point before going down an all new path like Metatrader.

 

I'm pulling some bits of code together now and will be back to bug some coders when I hit the roadblocks.

Share this post


Link to post
Share on other sites

Yeah, I have a copy of Amibroker too (older now) and really liked the backtesting approach they use, one of the best - Sierra still haven't caught up there yet.

 

The things I didn't like were:

- lack of "deep" control of the gui so charts were a bit 1 dimensional

- lack of good multitimeframe control

- the plug in for ib wasn't ready for real time reliable usage (this was about a year ago)

 

The nice thing was that you could write your code as C++ (seems they copied the structure) if you didn't use the coding short cuts. Which meant I was planning to write and test with AB then translate to SC for real time usage. As it was I resolved backtesting sufficiently to meet my needs so dropped AB for now.

 

Let us know how you go though. It seems a great package for the price.

Share this post


Link to post
Share on other sites

One inportant consideration is which paris to trade. While we take volume and balance of trade information from the futures we do a radar screen scan on local price volatilities that shows us out of sequence price action.

 

If you have a method that transfers between instruments then it is always better to trade what's hot and not trade what's not.

 

The scan below shows 60 and 21 minute volatilities for the various pairs and is updated every minute. This scan was taken at 1352 PST Friday.

 

tpt201.jpg

 

cheers

 

UB

Share this post


Link to post
Share on other sites

just s some feedback.....

I have downloaded sierra chart - so far i love it.

The display was a little tough to follow as there are a lot of menus and thats just a matter of getting used to it. This would normally turn me off as normally if i dont like the vibe, I am unlikely to persist, but in this case it seems to have enough flexibilty to suit me, and the Kiwi inspired autohotkeys make it even more flexible. (thanks.)

On a quick look it looks great. I love the ideas of trading from the excel type spreadsheet without needing to learn C++ if you dont need to. the charts look fine and seems straightforward and also the forum seems to have plenty of info on it.

Given it can feed into different brokers and also pick up different feeds it is definitely something I will persist with.

plus while not a major factor - the price is good.

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.


  • Similar Content

    • By Jonh Smith
      I searched in google with keywords best forex robot 2019 and in the end I found fxflightproEA from their website fxflightpro.com . if anyone has ever bought, I was interested in their ea. I saw a very small drawdown, and monthly profit looks great.and I see myfxbook profit reaching 50% in 50 days. if there are buy please review here and I say thank you if anyone would like to share here.

      thanks
    • By StraussX
      Hi GUYS, Happy Wednesday!
      I'd like to share daily forex analysis from Followme, hope this information helps your trading.
      Today, Let's focus on AUD and NZD.
      AUDUSD is trading at 0.6761; the instrument is moving below Ichimoku Cloud, thus indicating a descending tendency. The markets could indicate that the price may test the cloud’s downside border at 0.6765 and then resume moving downwards to reach 0.6635. Another signal to confirm further descending movement is the price’s rebounding from the descending channel’s upside border. However, the scenario that implies further decline may be canceled if the price breaks the cloud’s upside border and fixes above 0.6825. In this case, the pair may continue growing towards 0.6905.
       
      NZDUSD is trading at 0.6447; the instrument is moving below Ichimoku Cloud, thus indicating a descending tendency. The markets could indicate that the price may test the cloud’s downside border at 0.6455 and then resume moving downwards to reach 0.6315. Another signal to confirm further descending movement is the price’s rebounding from the resistance level. However, the scenario that implies further decline may be canceled if the price breaks the cloud’s upside border and fixes above 0.6525. In this case, the pair may continue growing towards 0.6645.
    • By Georgebro8
      So I've been 18 for about 4 months, since I turned 18 I started up an account, and basically thought I was doing amazing because of beginners luck, put in some of my savings and managed to do well, some days I would make £200, one day I even made £900, after time I lost my profits and made a loss as well. I've realised I need to spend the time analysing the market and making technical judgments. I'm trying to read more and spend a lot of my time looking at the charts. is there any advice people can give me. and is making 5% a week a realistic goal to set myself? before anyone assumes that im looking for a get rich quick scheme, im certainly not, I see every loss ive made as a lesson and ensure that I learn from each mistake I make. 
      any advice about indicators, strategies, how to analyse the market, or even analysing earning reports would help me.
    • By edakad
      Firebird is an indicator to identify the price spikes in the market. Firebird indicator first calculates a 10-period moving average, then shifts this moving average a certain percentage above and below the 10-period moving average. The shifted averages are drawn on chart as the red and green line. When price touches these lines, price spike is identified. Usually after a price spike, the trend reverses for some time. The indicator can be used to take advantage of this price behaviors. In daily chart usually the 10 period MA is shifted by 2 percent to form the price bands. On lower time frames like Hourly, Four Hour a smaller percentage price shift is used like 0.5% . The important consideration here is most of the price bars must be contained within the upper and lower bands.
      When price reaches above the upper red band, a sell position is opened. When price reaches the lower green band, buy position is opened. Trades can be managed with proper stop loss and take profit. In the picture, Firebird indicator is attached to daily chart of EUR/USD with 2% shift on MA. Note that almost all price bars are within the price bands. And when price extends beyond these bands, price trend reverses and comes back into the bands.

      FireBird.zip
  • Topics

  • Posts

    • re TikTok Recently metafakebook made what was apparently a move to stay aligned with ‘culture’ - no more fact ‘checking’, no more censorhip... basically ‘Zucker’ was shown that his mission was failing because they were only building profiles on ‘useful idiots’ instead of those who oppose the great centralization  (... just like long ago he only saw campus potential and had to be shown the promise and rewarded for fronting the great spyware and social engineering project called Fakebook)... ie they could have replaced him long ago In the same vein, who holds ‘title’ to tiktok doesn’t matter either... it will remain a spyware project regardless of who ‘buys’ it... and the data will forever be available to the CCP Just sayin’
    • Omobola,  As an engineer surely you have money to buy a ticket to Monterey, Mexico... just a hop and a jump from there to Texas...  hth zdo 
    • Date: 20th January 2025.   The NASDAQ Rises As Trump Inauguration Edges Closer!   US indices increased in value for the first time after struggling for 5 consecutive weeks. Of the main US indices the NASDAQ witnessed the strongest gains (4.12%). Risk indicators point to a higher risk appetite under the new US President, Donald Trump. President Trump's inauguration will take place this afternoon and has promised to sign over 100 consecutive orders within his first week. NASDAQ - Higher Investor Confidence! NASDAQ traders begin to stomach less frequent interest rate adjustments, the market turns its attention to earnings and Trump’s presidency. Investors are becoming more bullish under expectations that Trump will apply policies to support the US economy and entice further investment into the US stock market. A "risk-on" sentiment is evident in today's sessions, reflected in risk indicators like the VIX, High-Low Index, and Bond yields.     Investors this week will concentrate on two factors. The first factor is Trump’s consecutive orders which he has advised will be signed within his first week. Investors will closely monitor how and if these policies influence the US economy and stocks. The second factor is earnings season, which will start to gain momentum this week. Tomorrow, Netflix will release its quarterly earnings report after the market closes. Netflix is the NASDAQ’s 10th most influential company and 11th most impactful stock. Analysts expect the company’s earnings per share to drop from $5.40 to $4.21, but for Revenue to rise to $10.11 Billion. If Netflix is able to beat the earnings per share and revenue expectations, fundamental elections would indicate a rise in the price. Over the past 12 months the price has risen 76%. A further increase would further support the NASDAQ. Thereafter, investors will turn their attention to Intuitive Surgical’s earnings report. Currently, investors believe the company’s earnings per share and revenue will rise compared to the previous quarter. Intuitive’s stock has risen by more than 9% in the past week alone indicating that investors believe the company will continue to beat earnings expectations. The company has beat expectations over the past 12-months. How are Markets Reacting to Trump's inauguration? Trump pledged to issue executive orders aimed at advancing artificial intelligence programs and establishing the Department of Government Efficiency (Doge). Analysts expect these two alone to support US stocks. However, investors are not yet certain to what extent upcoming tariffs will pressure the NASDAQ and stocks. During the previous trade wars, the NASDAQ fell by 25% over a period of 4-months. Traders also should note that the NASDAQ rose in the 6-weeks after Trump won the elections. Over the past week, the VIX index fell by more than 12% indicating that the market believes US stocks will perform well under a Trump presidency. Simultaneously, US Bond yields have fallen from 4.80% to 4.58% which is known to positively influence the US stock market. Both the VIX and lower bond yields indicate higher investor confidence as Trump advises that policies will prompt more employment, US made products and more pro-US policies. NASDAQ - Technical Analysis The price of the NASDAQ trades above the 200-bar Moving Average on a 5-minute Chart indicating bullish price movement. Moving Averages have also crossed over upwards and the price trades above the VWAP indicating that the asset is maintaining its bullish momentum. Price action is also forming clear higher highs and higher lows, but investors will be cautious if the price does not find resistance at the $21,637 resistance level. In order to break above this level, investors will be hoping for positive earnings data from Netflix and Intuitive.     Key Takeaways: President Trump's inauguration will take place this afternoon with promise to sign over 100 consecutive orders within his first week. US indices rise after 5 weeks of declines, with the NASDAQ leading at 4.12%. Trump pledged to issue executive orders aimed at advancing artificial intelligence programs and establishing the Department of Government Efficiency. Analysts expect Netflix earnings per share to drop from $5.40 to $4.21, but for Revenue to rise to $10.11 Billion. Investors are becoming more bullish under expectations that President Trump will apply policies to support the US economy and entice further investment into the US stock market. Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news. Michalis Efthymiou HFMarkets Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • Consider: some 80% of small to medium-sized businesses around the world don’t have a website.   Many businesses in emerging economies rely on social media platforms (e.g., WhatsApp, Facebook) as their primary digital presence instead of formal websites.   But even in more digitally advanced economies, the number can hover around half.   Why? Simple answer: although we’ve made it easier to make a website, it’s still not easy enough.   Let’s say a yoga instructor wants to offer online classes but lacks tech skills or a budget.   Instead of struggling with confusing platforms, she tells her AI agent, “Set up a website for me to host yoga classes.”   The AI handles everything.   It integrates Stripe for payments, Zoom for live classes, scheduling services for in-person classes, and a chat module for inquiries.   It even suggests templates.   When the instructor picks one and asks for a purple and white color scheme, the AI updates it instantly.   No coding. No frustration. Just results.   And the best part? She didn’t have to touch a single screen or key.   This is the future Wilson describes in Age of Invisible Machines.   And, as mentioned, it’s powered by three core technologies:   Conversational User Interfaces (CUIs): Say what you need; the system handles it. From building websites to booking flights, it’s fast and human-like.   Composable Architecture: Traditional business solutions become “modules”. Like LEGO bricks, modular tools—payments, chats, scheduling—snap together to create custom solutions without starting from scratch.   No-Code Programming: AI agents code for you, empowering anyone to create without needing a developer. It’s not just a better way to interact with technology…   It’s a complete reimagining of how industries operate.   As Harvard Business School’s Marco Iansiti says, “This isn’t disruption—it’s a fundamental shift in production and interaction.”   And, the thing is…   It’s not just possible. It’s already happening.   Early examples are already here. – Chris Campbell, AltucherConfidential Profits from free accurate cryptos signals: https://www.predictmag.com/ 
    • Question: My name is Omobola Sikiru from Lagos, Nigeria. I am mechanical engineering. Where can I find someone that can be my helper to relocate me to the USA?   Answer: According to your own profile, you are trying to enter other countries through deception and immigration fraud.   You are an engineer in Nigeria, but you are not licensed as an engineer in any other country.   There are no helpers, no sponsors, and nobody is going to give you money, get you an engineering job, or get you a visa.   You must qualify to immigrate. Nobody can help you with that.   Either you qualify and have settling in money, or you don’t.   You need to improve your English before trying to get a job in a Western, English speaking country. Engineers write reports. You wrote, ‘I am mechanical engineering’. Nobody will hire you if you write like this. Rathkeale Source: https://www.quora.com/My-name-is-Omobola-Sikiru-from-Lagos-Nigeria-I-am-mechanical-engineering-Where-can-I-find-someone-that-can-be-my-helper-to-relocate-me-to-the-USA   Profits from free accurate cryptos signals: https://www.predictmag.com/  
×
×
  • Create New...

Important Information

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