Registered User Joined: 7/19/2010 Posts: 5
|
below please find two code items that do not work.
in both i am trying to reduce redundant logging.
can you help me to get it to work?
'|********************************************************************
'|*** StockFinder RealCode Condition - version 5.0
'|******************************************************************
'>> reduce the amount of logging!
'>> wll not work?? use log only for first bar of each symbol!
'If isfirstbar Then
' Me.log.info(" symbol= " & currentsymbol & " count= " & count)
'End If
'>> reduce amount of logging!
'>> will not work?? use log for last (count - 15) bars on right!
'If currentindex > (count - 15)
' 'Me.Log.info(" curindex= " & currentindex)
'End If
'>> this works?
If price.Close > price.AVG(21) Then pass
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
We've see your posts but don't have an answer on your logging questions. We'll try to get a developer to take a look but right now they're busy working on the latest version 5 release.
|