@@ -194,7 +194,7 @@ Module modPersistedDataSystem
194
194
End If
195
195
196
196
lTotal = lTotal + Val( "0" + Trim(cpid.Magnitude))
197
- lRows = lRows + 1
197
+ lRows = lRows + 1
198
198
sOut += sRow
199
199
dMagAge = 0
200
200
@@ -205,6 +205,7 @@ Module modPersistedDataSystem
205
205
sOut += sRow
206
206
End If
207
207
Next
208
+ sOut += "00000000000,275000;" 'This is a placeholder to be removed in Neural Network 2.0
208
209
sOut += "</MAGNITUDES><QUOTES>"
209
210
210
211
surrogateRow.Database = "Prices"
@@ -415,10 +416,16 @@ Module modPersistedDataSystem
415
416
Dim sQuorumData As String = ExtractXML(msSyncData, "<QUORUMDATA>" )
416
417
Dim dAge As Double = Val(ExtractXML(sQuorumData, "<AGE>" ))
417
418
Log( "EnsureTeamIsSynchronized: " + Trim(dAge))
419
+
420
+ If KeyValue( "NEURAL_07252017" ) = "" Then
421
+ UpdateKey( "NEURAL_07252017" , "CLEARING" ) 'Start Fresh on July 25 2017, then once every 6 hours we clear. Take this out when we move to NN2.
422
+ ClearProjectData()
423
+ End If
424
+
418
425
Dim dWindow As Double = 60 * 60 '1 hour before and 1 hour after superblock expires:
419
426
If dAge > ( 86400 - dWindow) And dAge < ( 86400 + dWindow) Then
420
427
Dim lAgeOfMaster = GetUnixFileAge(GetGridFolder() + "NeuralNetwork\db.dat" )
421
- If lAgeOfMaster > SYNC_THRESHOLD Then
428
+ If lAgeOfMaster > ( SYNC_THRESHOLD / 4 ) Then
422
429
'Clear out this nodes project data, so the node can sync with the team at the same exact time:
423
430
Log( "Clearing project data so we can synchronize as a team." )
424
431
ClearProjectData()
@@ -435,11 +442,12 @@ Module modPersistedDataSystem
435
442
End Sub
436
443
Private Sub ClearProjectData()
437
444
Dim sPath As String = GetGridFolder() + "NeuralNetwork\"
438
-
439
445
SoftKill(sPath + "db.dat" )
440
446
'Erase the projects
441
447
SoftKill(sPath + "*master.dat" )
442
- SoftKill(sPath + "*team.xml" )
448
+ SoftKill(sPath + "*.xml" )
449
+ SoftKill(sPath + "*.gz" )
450
+ SoftKill(sPath + "*.dat" )
443
451
End Sub
444
452
Private Sub ClearWhitelistData()
445
453
Dim sPath As String = GetGridFolder() + "NeuralNetwork\Whitelist\"
0 commit comments