Technology.
Introducing the world's first ever trading platform with the
technology.
Servo:: [from servo-, servire (italian, servant, slave)] is a technology that aims to do all dirty work instead of you. In NeedForTrade Studio trading platform it greatly simplifies the process of creating analysis techniques (Indicators, Strategies, Functions and so on) and lets you to implement almost any of your trading ideas without programming knowledge.
Key benefits:
- If you want to implement a relatively easy idea - just write simple logical operators and get the result. You don't have to bother about any programming tasks and service code.
- No object-oriented programming skills are required - bringing the simplicity of functional programming to object-oriented world.
- Unleash the power of Microsoft .NET Framework without any programming skills.
- Debug only your code. Never see any implementation details. Service code is totally hidden.
Comparing to other approaches:
| .NET Language +  | Custom Language | .NET Language | Excel + VBA (Visual Basic) | C++, Java Languages (or other object-oriented language) |
Ease-of-Use | High | High | Low | Medium | Very Low |
Flexibility | High | Low | High | Medium | High |
Performance | High | Low-to-High (may vary from system to system) | High | Low | Very High |
Required Programming Skills | Very Low (almost none) | Very Low (almost none) | Medium-to-High (may vary from system to system) | Medium | Very High |
Debugging Support | Very High* | Very Low | High | Medium | High |
*You debug only your strategy/indicator code. Service code is hidden.
Code Example (.NET Language +
):
GapUp Long Enter Strategy:
[code:c#]
/*COMMENT: Next statement will buy next bar at market price if low of current bar is higher then high of previous bar*/
if ( Low[0] > High[1] ) BuyNextBarAtMarket();
[/code]
As shown in the example above it took only one simple line of code to create simple strategy. This just couldn't be easier!