You would need to set up the basics of the indicator within the strategy, so whatever makes LineVar have a value of 1.54, this has to be inserted into the strategy. Here's an example of a cci below:
// indicator.eld file
CCiValue = 154
// strategy.eld separate file
If CCiValue > 0 then Buy
If CCiValue < 0 then Sell
On this example you would have to insert the variable into the strategy, which would be
CCiValue = cci(Length);
Hope this helps
Blu-Ray